mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-30 11:19:44 -04:00
Text messages have a maximum length, which we tell the users. We
shouldn’t expect people to count the characters in the message
themselves.
This commit borrows [the word counter from the Digital Marketplace
frontend toolkit](9d17690de5/toolkit/javascripts/word-counter.js)
and adapts it to count characters instead.
Things I’m still not sure about with this:
- what should it say when the message goes over the length of one text
message
- what’s the interaction with placeholders, which will change the length
of the message
This commit also adds a line to the pricing page which explains that
service name counts towards the length of the message.
55 lines
1.5 KiB
HTML
55 lines
1.5 KiB
HTML
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
Pricing – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1 class="heading-large">Pricing</h1>
|
||
|
||
<h2 class="heading-medium">Emails</h2>
|
||
|
||
<p>
|
||
Sending email through GOV.UK Notify is completely free.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Text messages</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Free allowance: 250,000 text messages per service, per financial year</li>
|
||
<li>
|
||
If your messages are long, they will count as 2 or 3 text messages, depending on length:
|
||
<ul class="list list-bullet">
|
||
<li>Up to 160 characters = 1 text message</li>
|
||
<li>Up to 306 characters = 2 text messages</li>
|
||
<li>Up to 459 characters = 3 text messages</li>
|
||
<li>Your service name counts towards the length of your message</li>
|
||
</ul>
|
||
</li>
|
||
<li>Standard text message rate: 1.8p + VAT</li>
|
||
</ul>
|
||
|
||
<p>
|
||
We simply charge you the costs we pay to our delivery partners.
|
||
We don’t mark these costs up in any way.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">No monthly charge or setup fee</h2>
|
||
<p>
|
||
There are no other charges for using Notify. There’s no monthly charge
|
||
or setup fee.
|
||
</p>
|
||
|
||
<p>
|
||
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.
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|