2017-06-14 16:41:52 +01:00
{% extends "withoutnav_template.html" %}
2018-01-25 15:29:05 +00:00
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
2017-11-28 11:58:15 +00:00
{% from "components/sub-navigation.html" import sub_navigation %}
2017-06-14 16:41:52 +01:00
{% block per_page_title %}
2017-06-14 17:01:16 +01:00
Features
2017-06-14 16:41:52 +01:00
{% endblock %}
{% block maincolumn_content %}
< div class = "grid-row" >
2017-11-28 11:58:15 +00:00
< div class = "column-one-third" >
{{ sub_navigation(navigation_links) }}
< / div >
2017-06-14 16:41:52 +01:00
< div class = "column-two-thirds" >
2017-11-28 11:58:15 +00:00
< h1 class = "heading-large" > Features< / h1 >
< p > GOV.UK Notify helps government services to:< / p >
< ul class = "list list-bullet" >
< li > send emails< / li >
2018-01-25 16:20:07 +00:00
< li > send and receive text messages (UK and internationally)< / li >
2017-11-28 11:58:15 +00:00
< li > send letters< / li >
< / ul >
< p > You can use Notify if you’ re running a service in:< / p >
< ul class = "list list-bullet" >
< li > central government< / li >
< li > a local authority< / li >
< li > the NHS< / li >
< / ul >
< p > You don’ t need any technical knowledge to use Notify.< / p >
< p > < a href = "{{ url_for('main.register') }}" > Create an account< / a > for free and try it yourself.< / p >
2017-06-14 16:41:52 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Customise your messages< / h2 >
< p > With Notify, you control the content and format of your messages. You can:< / p >
< ul class = "list list-bullet" >
< li > customise the content of your messages< / li >
< li > change the formatting of emails and letters< / li >
< li > create and update templates in real time< / li >
< li > add your own branding< / li >
< li > choose your text message sender name< / li >
< li > choose an email account for users to reply to< / li >
< li > preview messages before you send them< / li >
< / ul >
2017-07-28 11:17:04 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Send messages when you want to< / h2 >
< p > You can send messages straight away, or schedule them in advance.< / p >
< h3 class = "heading-small" > Service levels< / h3 >
< p > Notify commits to:< / p >
< ul class = "list list-bullet" >
< li > sending 95% of emails and text messages within 10 seconds< / li >
< li > sending letters by 3pm the next working day (if you submit it through Notify before 5pm)< / li >
< / ul >
2017-06-14 16:41:52 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > See your activity< / h2 >
< p > Through the Notify dashboard, you can:< / p >
< ul class = "list list-bullet" >
< li > check the delivery status of any emails and text messages< / li >
< li > see a real-time dashboard of your activity< / li >
< li > view your usage and reports< / li >
< / ul >
2017-06-14 16:41:52 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Send messages in bulk or individually< / h2 >
< p > With Notify, you can:< / p >
< ul class = "list list-bullet" >
< li > upload files with all your user data< / li >
< li > send bulk messages to users< / li >
< li > send messages to specific users< / li >
< / ul >
2017-06-14 16:41:52 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Manage user permissions< / h2 >
< p > Through the Notify dashboard, you can:< / p >
< ul class = "list list-bullet" >
< li > set different permission levels for different team members< / li >
< li > invite contractors to use Notify< / li >
< / ul >
2017-06-14 16:41:52 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Automate your messages< / h2 >
< p > You can integrate with our API to automatically send messages through Notify when relevant data changes in your systems.< / p >
< p > This means you don’ t have to manually download data from your system and upload it to Notify to send a message.< / p >
< p > < a href = "{{ url_for('main.documentation') }}" > Check our code libraries< / a > for more information on how to integrate with Notify.< / p >
2017-10-05 13:02:27 +01:00
2017-11-28 11:58:15 +00:00
< h2 class = "heading-medium" > Reliable and resilient< / h2 >
< p > Notify sends messages through multiple providers. If one provider fails, Notify automatically switches to another so that your messages aren’ t affected.< / p >
2018-01-25 15:29:05 +00:00
2017-06-14 16:41:52 +01:00
{% endblock %}