Files
notifications-admin/app/templates/views/features.html
karlchillmaid c8b4f304e7 Add API content
Add API content and update introduction
2019-04-11 10:31:20 +01:00

90 lines
4.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withoutnav_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% block per_page_title %}
Features
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-one-third">
{{ sub_navigation(navigation_links) }}
</div>
<div class="column-two-thirds">
<h1 class="heading-large">Features</h1>
<p>If you work for central government, a local authority or the NHS, you can use GOV.UK Notify to send your users:</p>
<ul class="list list-bullet">
<li>emails</li>
<li>text messages</li>
<li>letters</li>
</ul>
<p>You dont 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>
<h2 class="heading-medium">Send messages quickly and easily</h2>
<p>Without any technical knowledge, you can:</p>
<ul class="list list-bullet">
<li>create reusable message templates</li>
<li>send personalised messages to individual users</li>
<li>schedule messages to be sent at a particular time</li>
<li>send bulk messages to lots of users</li>
</ul>
<h2 class="heading-medium">Customised messages</h2>
<p>You control how your messages look when you send them through Notify. You can:</p>
<ul class="list list-bullet">
<li>use your organisations own branding</li>
<li>choose the name that emails and text messages come from</li>
<li>choose the email address that users reply to</li>
<li>get a unique phone number for text message replies</li>
</ul>
<h2 class="heading-medium">API integration</h2>
<p>You can integrate the GOV.UK Notify API with your web application or back office system to send messages automatically.</p>
<p>Read our <a href="https://www.notifications.service.gov.uk/documentation">documentation</a> to find out how to integrate with Notify.</p>
<h2 class="heading-medium">Reporting</h2>
<p>Notifys real-time dashboard lets you see the number of messages sent. You can also check the current status of any message, to see when it was delivered.</p>
<p>Read more about <a href="https://www.notifications.service.gov.uk/features/using-notify#messagestatus">message statuses</a>.</p>
<h2 class="heading-medium">Permissions</h2>
<p>Notify lets you control which members of your team can see, create, edit and send messages.</p>
<p>You can:</p>
<ul class="list list-bullet">
<li>set different permission levels for each team member</li>
<li>invite team members who dont have a government email address</li>
<li>choose who else can manage team members</li>
</ul>
<h2 class="heading-medium">Performance</h2>
<p>GOV.UK Notify commits to:</p>
<ul class="list list-bullet">
<li>sending 95% of emails and text messages within 10 seconds</li>
<li>printing and posting letters by 3pm the next working day (if you send them to us before 5pm)</li>
</ul>
<p>We send messages through several different providers. If one provider fails, Notify switches to another so that your messages are not affected.</p>
<p>Visit GOV.UK Performance to <a href="https://www.gov.uk/performance/govuk-notify">see how Notify is performing</a>.</p>
<h2 class="heading-medium">Security</h2>
<p>Notify protects and manages data to meet the needs of government services.</p>
<h3 class="heading-small">Hide sensitive information</h3>
<p>Notify lets you redact personal information from your messages after they've been sent. This means that only the recipient can see that information.</p>
<h3 class="heading-small">Two-factor authentication</h3>
<p>Notify uses 2FA to keep your account secure. Every time you sign in, we'll send a unique one-time code to your phone and ask you to enter it first.</p>
<p>Read more about <a href="https://www.notifications.service.gov.uk/features/security">security</a>.
<h2 class="heading-medium">Support</h2>
<p>Notify provides 24-hour online support. If you have an emergency outside office hours, well reply within 30 minutes.</p>
<p>Find out more about <a href="https://www.notifications.service.gov.uk/support">support</a>.
{% endblock %}