2017-07-28 15:07:08 +01:00
|
|
|
|
{% from "components/table.html" import mapping_table, row, text_field, field, row_heading %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2018-08-15 20:13:49 +01:00
|
|
|
|
{% from "components/live-search.html" import live_search %}
|
2017-07-28 14:43:44 +01:00
|
|
|
|
|
2016-04-04 15:22:30 +01:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Pricing
|
2016-04-04 15:22:30 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-two-thirds">
|
2017-07-28 14:28:25 +01:00
|
|
|
|
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<h1 class="heading-large">Pricing</h1>
|
|
|
|
|
|
<p> To use GOV.UK Notify, there’s:</p>
|
2016-04-04 15:22:30 +01:00
|
|
|
|
<ul class="list list-bullet">
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<li>no procurement cost</li>
|
|
|
|
|
|
<li>no monthly charge</li>
|
|
|
|
|
|
<li>no setup fee to use</li>
|
2016-04-04 15:22:30 +01:00
|
|
|
|
</ul>
|
|
|
|
|
|
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<h2 class="heading-medium">Emails</h2>
|
|
|
|
|
|
<p>It’s free to send emails through GOV.UK Notify.</p>
|
2016-04-04 15:22:30 +01:00
|
|
|
|
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<h2 class="heading-medium">Text messages</h2>
|
|
|
|
|
|
<p>You have a free allowance of text messages each financial year. You’ll get:</p>
|
2017-07-28 14:28:25 +01:00
|
|
|
|
<ul class="list list-bullet">
|
2018-03-07 15:15:21 +00:00
|
|
|
|
<li>250,000 free text messages for central government services</li>
|
2018-03-08 10:30:57 +00:00
|
|
|
|
<li>25,000 free text messages for other public sector services</li>
|
2017-07-28 14:28:25 +01:00
|
|
|
|
</ul>
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<p>It costs 1.58 pence (plus VAT) for each text message you send after your free allowance.</p>
|
2018-03-16 11:03:30 +00:00
|
|
|
|
|
2018-03-01 16:24:54 +00:00
|
|
|
|
<h3 class="heading-small">Multiple services</h3>
|
|
|
|
|
|
<p>If your organisation offers multiple services, you can have a different Notify account for each of them.</p>
|
|
|
|
|
|
<p>Each service will get its own free message allowance.</p>
|
2018-03-16 11:03:30 +00:00
|
|
|
|
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<h3 class="heading-small">Long text messages</h3>
|
|
|
|
|
|
<p>If a text message is beyond a certain length, it’ll be charged as more than one message:</p>
|
|
|
|
|
|
<div class="bottom-gutter-3-2">
|
|
|
|
|
|
{% call mapping_table(
|
|
|
|
|
|
caption='Letter pricing',
|
|
|
|
|
|
field_headings=['Message length', 'Charge'],
|
|
|
|
|
|
field_headings_visible=True,
|
|
|
|
|
|
caption_visible=False
|
|
|
|
|
|
) %}
|
|
|
|
|
|
{% for message_length, charge in [
|
|
|
|
|
|
('Up to 160 characters', '1 text message'),
|
|
|
|
|
|
('Up to 306 characters', '2 text messages'),
|
2018-08-16 16:51:32 +01:00
|
|
|
|
('Up to 459 characters', '3 text messages'),
|
|
|
|
|
|
('Up to 612 characters', '4 text messages'),
|
2017-11-28 11:58:15 +00:00
|
|
|
|
] %}
|
|
|
|
|
|
{% call row() %}
|
|
|
|
|
|
{{ text_field(message_length) }}
|
|
|
|
|
|
{{ text_field(charge) }}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h3 class="heading-small">Sending text messages to international numbers</h3>
|
|
|
|
|
|
<p>It might cost more to send text messages to international numbers than UK ones, depending on the country.</p>
|
2017-07-28 15:10:12 +01:00
|
|
|
|
<details>
|
|
|
|
|
|
<summary>International text message rates</summary>
|
|
|
|
|
|
|
2018-08-15 20:13:49 +01:00
|
|
|
|
{{ live_search(target_selector='#international-pricing .table-row', show=True, form=search_form, label='Search by country name or code') }}
|
2017-07-28 15:10:12 +01:00
|
|
|
|
|
|
|
|
|
|
<div id="international-pricing" class="bottom-gutter-3-2">
|
|
|
|
|
|
{% call mapping_table(
|
|
|
|
|
|
caption='Letter pricing',
|
2017-10-27 09:10:29 +01:00
|
|
|
|
field_headings=['Country code', 'Country', 'Cost multiplier'],
|
2017-07-28 15:10:12 +01:00
|
|
|
|
field_headings_visible=True,
|
|
|
|
|
|
caption_visible=False
|
|
|
|
|
|
) %}
|
|
|
|
|
|
{% for cc, names, billable_units in international_sms_rates %}
|
|
|
|
|
|
{% call row() %}
|
|
|
|
|
|
{{ text_field('+' + cc) }}
|
|
|
|
|
|
{% call field() %}
|
|
|
|
|
|
{% for name in names %}
|
|
|
|
|
|
{{ name }}<br>
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{{ text_field('{} ×'.format(billable_units)|safe) }}
|
2017-07-28 15:07:08 +01:00
|
|
|
|
{% endcall %}
|
2017-07-28 15:10:12 +01:00
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</details>
|
2017-07-28 14:58:47 +01:00
|
|
|
|
|
2018-01-19 13:45:54 +00:00
|
|
|
|
<h2 class="heading-medium" id="letters">Letters</h2>
|
2018-10-09 14:37:07 +01:00
|
|
|
|
<p>The cost of sending a letter depends on how many sheets of paper you need and the class of postage.</p>
|
2017-07-28 14:43:44 +01:00
|
|
|
|
<div class="bottom-gutter-3-2">
|
|
|
|
|
|
{% call mapping_table(
|
|
|
|
|
|
caption='Letter pricing',
|
2018-10-09 14:37:07 +01:00
|
|
|
|
field_headings=['', 'Second class', 'First class'],
|
2017-07-28 14:43:44 +01:00
|
|
|
|
field_headings_visible=True,
|
|
|
|
|
|
caption_visible=False
|
|
|
|
|
|
) %}
|
2018-10-09 14:37:07 +01:00
|
|
|
|
{% for sheets, second, first in [
|
|
|
|
|
|
('1 sheet', '30', '56'),
|
|
|
|
|
|
('2 sheets', '35', '61'),
|
|
|
|
|
|
('3 sheets', '40', '66'),
|
|
|
|
|
|
('4 sheets', '45', '71'),
|
|
|
|
|
|
('5 sheets', '50', '76'),
|
2017-07-28 14:43:44 +01:00
|
|
|
|
] %}
|
|
|
|
|
|
{% call row() %}
|
2018-07-12 15:50:22 +01:00
|
|
|
|
{% call row_heading() %} {{ sheets }} (double-sided) {% endcall %}
|
2018-10-09 14:37:07 +01:00
|
|
|
|
{{ text_field(second + 'p + VAT') }}
|
|
|
|
|
|
{{ text_field(first + 'p + VAT') }}
|
2017-07-28 14:43:44 +01:00
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
</div>
|
2017-11-28 11:58:15 +00:00
|
|
|
|
<p>Letter prices include:</p>
|
|
|
|
|
|
<ul class="list list-bullet">
|
|
|
|
|
|
<li>paper</li>
|
|
|
|
|
|
<li>double-sided colour printing</li>
|
|
|
|
|
|
<li>envelopes</li>
|
2018-10-09 14:37:07 +01:00
|
|
|
|
<li>postage</li>
|
2017-11-28 11:58:15 +00:00
|
|
|
|
</ul>
|
2017-07-28 14:28:25 +01:00
|
|
|
|
|
2018-01-31 17:00:54 +00:00
|
|
|
|
<h2 class="heading-medium" id="paying">How to pay</h2>
|
2018-03-01 16:24:54 +00:00
|
|
|
|
<p>You can find details of how to pay for Notify in our data sharing and financial agreement.</p>
|
2018-03-16 11:03:30 +00:00
|
|
|
|
<p>
|
2018-05-08 14:28:08 +01:00
|
|
|
|
{{ agreement_info.as_pricing_paragraph(
|
|
|
|
|
|
pricing_link=url_for('main.sign_in', next=url_for('main.pricing', _anchor='paying')),
|
|
|
|
|
|
download_link=url_for('main.agreement'),
|
|
|
|
|
|
support_link=url_for('.feedback', ticket_type='ask-question-give-feedback', body='agreement'),
|
|
|
|
|
|
signed_in=current_user.is_authenticated,
|
|
|
|
|
|
) }}
|
2018-03-16 11:03:30 +00:00
|
|
|
|
</p>
|
2016-04-04 15:22:30 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|