{% from "components/table.html" import mapping_table, row, text_field, field, row_heading %} {% from "components/textbox.html" import textbox %} {% from "components/live-search.html" import live_search %} {% extends "content_template.html" %} {% block per_page_title %} Pricing {% endblock %} {% block content_column_content %}

Pricing

To use GOV.UK Notify, there’s:

{% if not current_user.is_authenticated %} Create an account then add as many different services as you need to.

{% else %} You can add as many different services as you need to. {% endif %}

When you add a new service it will start in trial mode.

Emails

It’s free to send emails through Notify.

Text messages

Every service you add has an annual allowance of free text messages.

If your organisation has more than one service on Notify, they each have a separate allowance.

The allowance is:

It costs 1.58 pence (plus VAT) for each text message you send after you've used your free allowance.

See how to pay.

Long text messages

If a text message is longer than 160 characters (including spaces), it’ll be charged as more than one message:

{% call mapping_table( caption='Text message 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'), ('Up to 459 characters', '3 text messages'), ('Up to 612 characters', '4 text messages'), ] %} {% call row() %} {{ text_field(message_length) }} {{ text_field(charge) }} {% endcall %} {% endfor %} {% endcall %}

Long text messages containing Welsh characters (Â, â, Ê, ê, Î, î, Ô, ô, Û, û, Ŵ, ŵ, Ŷ, and ŷ) are charged differently:

{% call mapping_table( caption='Text message pricing', field_headings=['Message length', 'Charge'], field_headings_visible=True, caption_visible=False ) %} {% for message_length, charge in [ ('Up to 70 characters', '1 text message'), ('Up to 134 characters', '2 text messages'), ('Up to 201 characters', '3 text messages'), ('Up to 268 characters', '4 text messages'), ('Each additional 67 characters', '1 additional text message'), ] %} {% call row() %} {{ text_field(message_length) }} {{ text_field(charge) }} {% endcall %} {% endfor %} {% endcall %}

Sending text messages to international numbers

It might cost more to send text messages to international numbers than UK ones, depending on the country.

International text message rates {{ live_search(target_selector='#international-pricing .table-row', show=True, form=search_form, label='Search by country name or code') }}
{% call mapping_table( caption='Letter pricing', field_headings=['Country code', 'Country', 'Cost multiplier'], 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 }}
{% endfor %} {% endcall %} {{ text_field('{} ×'.format(billable_units)|safe) }} {% endcall %} {% endfor %} {% endcall %}

Letters

The cost of sending a letter depends on the postage you choose and how many sheets of paper you need.

{% call mapping_table( caption='Letter pricing', field_headings=['Paper', 'Second class', 'First class'], field_headings_visible=True, caption_visible=False ) %} {% for sheets, second, first in [ ('1 sheet', '35', '61'), ('2 sheets', '40', '66'), ('3 sheets', '45', '71'), ('4 sheets', '50', '76'), ('5 sheets', '55', '81'), ] %} {% call row() %} {% call row_heading() %} {{ sheets }} (double-sided) {% endcall %} {{ text_field(second + 'p + VAT') }} {{ text_field(first + 'p + VAT') }} {% endcall %} {% endfor %} {% endcall %}

These prices were updated on 1 October 2019.

Prices include:

{% endblock %}