2017-04-27 14:26:25 +01:00
|
|
|
{% extends "withnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2017-04-27 14:26:25 +01:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2017-04-27 14:26:25 +01:00
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2019-07-25 11:52:13 +01:00
|
|
|
Send international text messages
|
2017-04-27 14:26:25 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-04-27 14:26:25 +01:00
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-10">
|
2021-07-30 18:23:12 +01:00
|
|
|
{{ page_header('Send international text messages') }}
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2017-09-26 14:05:02 +01:00
|
|
|
Messages to international mobile numbers are charged at 1, 2, or
|
2023-08-04 14:32:25 -04:00
|
|
|
3 times the cost of messages to US mobile numbers.</p>
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2023-08-08 16:19:17 -04:00
|
|
|
See <a class="usa-link" href="{{ url_for(".pricing") }}">pricing</a> for the list
|
2017-09-26 14:05:02 +01:00
|
|
|
of rates.
|
|
|
|
|
</p>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-06-30 16:10:39 +01:00
|
|
|
{{ form.enabled }}
|
2019-04-29 11:44:05 +01:00
|
|
|
{{ page_footer('Save') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2017-04-27 14:26:25 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|