mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 10:08:26 -04:00
If you’ve got an inbound number and are using the API you’ll probably be interested in this new feature we’ve got. And if you do know about it, you might not be able to find it because we’ve moved it.
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
{% 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>
|
||
Your service can receive text messages sent to {{ inbound_number }}.
|
||
</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>
|
||
{% if current_user.has_permissions(['manage_api_keys'], admin_override=True) %}
|
||
<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 %}
|
||
{% else %}
|
||
<p>
|
||
Receiving text messages from your users is an
|
||
invitation‑only feature.
|
||
</p>
|
||
<p>
|
||
If you want to try it out,
|
||
<a href="{{ url_for('.support') }}">get in touch with the GOV.UK Notify team</a>.
|
||
</p>
|
||
<p>
|
||
We’ll set you up with a special phone number, and you’ll be able to see
|
||
the messages on your dashboard, or get them using the API.
|
||
</p>
|
||
{% endif %}
|
||
{{ page_footer(
|
||
back_link=url_for('.service_settings', service_id=current_service.id),
|
||
back_link_text='Back to settings'
|
||
) }}
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|