{% 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 %}

Receive text messages

{% if 'inbound_sms' in current_service.permissions %}

Your service can receive text messages sent to {{ current_service.sms_sender }}.

If you want to turn this feature off, get in touch with the GOV.UK Notify team.

{% else %}

Receiving text messages from your users is an invitation‑only feature.

If you want to try it out, get in touch with the GOV.UK Notify team.

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.

{% endif %} {{ page_footer( back_link=url_for('.service_settings', service_id=current_service.id), back_link_text='Back to settings' ) }}
{% endblock %}