{% from "components/table.html" import mapping_table, row, text_field, field, row_heading %} {% from "components/textbox.html" import textbox %} {% extends "withoutnav_template.html" %} {% block per_page_title %} Pricing {% endblock %} {% block maincolumn_content %}

Pricing

Emails

Sending email through GOV.UK Notify is completely free.

Text messages

Text message rate: {{ '{:.2f}'.format(sms_rate * 100) }} pence + VAT

Free allowance

All services have a free allowance of text messages, per financial year:

Long messages

Long messages count as 2 or 3 text messages depending on length:

International numbers

Messages to international mobile numbers are charged at 1, 2, or 3 times the cost of messages to UK mobile numbers.

International text message rates
{% call mapping_table( caption='Letter pricing', field_headings=['Country code', 'Country', 'Cost multipler'], 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

Letters are printed double sided in colour. Prices include printing, paper, envelope, and postage. All letters are sent second class post.

The price of letters increases with the number of sheets printed:

{% call mapping_table( caption='Letter pricing', field_headings=['', 'Central government', 'Local government'], field_headings_visible=True, caption_visible=False ) %} {% for sheets, central, local in [ ('1 sheet', '30', '33'), ('2 sheets', '33', '39'), ('3 sheets', '36', '45') ] %} {% call row() %} {% call row_heading() %} {{ sheets }} (double sided) {% endcall %} {{ text_field(central + 'p + VAT') }} {{ text_field(local + 'p + VAT') }} {% endcall %} {% endfor %} {% endcall %}

No monthly charge or setup fee

There are no other charges for using Notify. There’s no monthly charge or setup fee.

The Government Digital Service is funding the development and running of Notify. We’re also covering the cost of the free emails and text messages.

We simply charge you the costs we pay to our delivery partners. We don’t mark these costs up in any way.

{% endblock %}