mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-15 09:34:25 -05:00
23 lines
942 B
HTML
23 lines
942 B
HTML
{% extends "base.html" %}
|
||
{% from "components/service-link.html" import service_link %}
|
||
|
||
{% block per_page_title %}
|
||
Send messages
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="font-body-2xl margin-bottom-3">Send messages</h1>
|
||
|
||
<p><a class="usa-link" href="{{ url_for('main.register') }}">Create an account</a> to see a short tutorial explaining how to create and send messages.</p>
|
||
|
||
<h2 class="font-body-lg" id="bulk-sending">Bulk sending</h2>
|
||
|
||
<p>To send a batch of messages at once:</p>
|
||
<ol class="list list-number">
|
||
<li>Go to the {{ service_link(current_service, 'main.choose_template', 'templates') }} page and choose an existing template.</li>
|
||
<li>Select <b class="bold">Send</b>.</li>
|
||
<li>If you’re sending emails, select <b class="bold">Upload a list of email addresses</b>. If you’re sending text messages, select <b class="bold">Upload a list of phone numbers</b>.</li>
|
||
|
||
{% endblock %}
|