2017-06-07 14:14:53 +01:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
|
|
|
|
|
Receive text messages
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-five-sixths">
|
|
|
|
|
|
<h1 class="heading-large">Receive text messages</h1>
|
|
|
|
|
|
{% if 'inbound_sms' in current_service.permissions %}
|
|
|
|
|
|
<p>
|
2017-08-24 10:02:02 +01:00
|
|
|
|
Your service can receive text messages sent to {{ inbound_number }}.
|
2017-06-07 14:14:53 +01:00
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
If you want to turn this feature off,
|
|
|
|
|
|
<a href="{{ url_for('.support') }}">get in touch with the GOV.UK Notify team</a>.
|
|
|
|
|
|
</p>
|
2018-03-01 10:30:17 +00:00
|
|
|
|
{% if current_user.has_permissions('manage_api_keys') %}
|
2018-01-11 17:20:21 +00:00
|
|
|
|
<p>
|
|
|
|
|
|
You can set up callbacks for received text messages on the
|
|
|
|
|
|
<a href="{{ url_for('.api_callbacks', service_id=current_service.id) }}">API integration page</a>.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
{% endif %}
|
2017-06-07 14:14:53 +01:00
|
|
|
|
{% else %}
|
|
|
|
|
|
<p>
|
2018-01-22 13:16:15 +00:00
|
|
|
|
If you want to be able to receive text messages from your users, please
|
|
|
|
|
|
<a href="{{ url_for('.support') }}">get in touch</a>.
|
2017-06-07 14:14:53 +01:00
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
2018-01-22 13:16:15 +00:00
|
|
|
|
We’ll create a special phone number for your users to contact. You'll be able to see
|
2017-06-07 14:14:53 +01:00
|
|
|
|
the messages on your dashboard, or get them using the API.
|
|
|
|
|
|
</p>
|
2018-01-22 13:16:15 +00:00
|
|
|
|
It doesn’t cost you anything to receive messages. Users will pay their normal rate for
|
|
|
|
|
|
messaging a mobile number.
|
|
|
|
|
|
</p>
|
2017-06-07 14:14:53 +01:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
|
|
|
|
back_link_text='Back to settings'
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|