2019-03-29 14:51:23 +00:00
{% extends "withoutnav_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% block per_page_title %}
2019-04-04 16:39:55 +01:00
Text messages
2019-03-29 14:51:23 +00:00
{% endblock %}
{% block maincolumn_content %}
< div class = "grid-row" >
< div class = "column-one-third" >
{{ sub_navigation(navigation_links) }}
</ div >
< div class = "column-two-thirds" >
2019-04-09 15:20:40 +01:00
2019-03-29 14:51:23 +00:00
< h1 class = "heading heading-large" > Text messages</ h1 >
2019-04-18 10:59:18 +01:00
< p > Send thousands of free text messages to UK and international numbers with GOV.UK Notify.</ p >
2019-04-09 15:20:40 +01:00
{% if not current_user.is_authenticated %}
2019-04-16 10:19:45 +01:00
< p >< a href = "{{ url_for('main.register') }}" > Create an account</ a > and try Notify for yourself.</ p >
2019-04-09 15:20:40 +01:00
{% endif %}
2019-04-04 10:00:39 +01:00
< h2 class = "heading heading-medium" > Features</ h2 >
2019-04-04 15:15:52 +01:00
< p > Notify makes it easy to:</ p >
< ul class = "list list-bullet" >
< li > create reusable text message templates</ li >
< li > personalise the content of your texts</ li >
< li > send and schedule bulk messages</ li ></ ul >
2019-04-16 10:19:45 +01:00
< p > You can also < a href = "{{ url_for('.documentation') }}" > integrate with our API</ a > to send text messages automatically.< p >
2019-04-04 15:15:52 +01:00
2019-04-04 10:00:39 +01:00
< h3 class = "heading heading-small" > Receive text messages</ h3 >
< p > Let people send messages to your service or reply to your texts.</ p >
2019-04-09 15:20:40 +01:00
< p > You can see and reply to the messages you receive, or set up your own automated processes to manage replies.</ p >
2019-04-16 16:51:28 +01:00
< p >< a href = "{{ url_for('.feedback', ticket_type='ask-question-give-feedback') }}" > Contact the team</ a > to request a unique number for text message replies.</ p >
2019-04-09 15:20:40 +01:00
2019-04-04 10:00:39 +01:00
< h3 class = "heading heading-small" > Show people who your texts are from</ h3 >
< p > When you send a text message with Notify, the sender name tells people who it's from.</ p >
< p > You can change the text message sender name from the default of 'GOVUK' in your service settings.</ p >
< h2 class = "heading heading-medium" > Pricing< h2 >
2019-04-09 15:20:40 +01:00
< p > Each service you set up has a free annual allowance. After that it costs 1.58 pence (plus VAT) to send a text to a UK number.</ p >
2019-04-04 10:00:39 +01:00
< p > The free allowance is:</ p >
< ul class = "list list-bullet" >
< li > 250,000 free text messages for central government services</ li >
2019-04-04 10:03:02 +01:00
< li > 25,000 free text messages for other public sector services</ li ></ ul >
2019-04-16 10:19:45 +01:00
< p >< a href = "{{ url_for('.pricing') }}" > See pricing</ a > for more details.</ p >
2019-04-04 15:15:52 +01:00
2019-04-04 16:39:55 +01:00
</ div >
</ div >
2019-04-09 15:20:40 +01:00
2019-04-04 15:15:52 +01:00
{% endblock %}