{% extends "withnav_template.html" %} {% from "components/sms-message.html" import sms_message %} {% from "components/page-footer.html" import page_footer %} {% from "components/textbox.html" import textbox %} {% block page_title %} GOV.UK Notify | Send text messages {% endblock %} {% block maincolumn_content %}

Send text messages

1. Choose text message template {% for template in message_templates %} {{ sms_message( template.body, name=template.name, input_name='template', input_index=loop.index ) }} {% endfor %}

2. Add recipients

Upload a CSV file to add your recipients’ details.

You can also download an example CSV.

{{textbox(form.file)}}

{{ page_footer("Continue") }}
{% endblock %}