Files
notifications-admin/app/templates/views/guidance/create-and-send-messages.html

23 lines
942 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% from "components/service-link.html" import service_link %}
2020-01-21 09:25:14 +00:00
{% block per_page_title %}
2020-01-27 08:51:17 +00:00
Send messages
2020-01-21 09:25:14 +00:00
{% 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>
2020-01-21 09:25:14 +00:00
<p>To send a batch of messages at once:</p>
2020-01-21 09:25:14 +00:00
<ol class="list list-number">
<li>Go to the {{ service_link(current_service, 'main.choose_template', 'templates') }} page and choose an existing template.</li>
2023-08-25 10:40:56 -04:00
<li>Select <b class="bold">Send</b>.</li>
<li>If youre sending emails, select <b class="bold">Upload a list of email addresses</b>. If youre sending text messages, select <b class="bold">Upload a list of phone numbers</b>.</li>
2020-01-21 09:25:14 +00:00
{% endblock %}