mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-26 05:11:06 -05:00
65 lines
2.6 KiB
HTML
65 lines
2.6 KiB
HTML
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
|
||
{% from "components/sub-navigation.html" import sub_navigation %}
|
||
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
Roadmap
|
||
{% 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">Roadmap</h1>
|
||
|
||
<p>The GOV.UK Notify roadmap shows the things we’re working on and when we hope to have them ready for you to use.</p>
|
||
<p>Notify is in public beta. This means it’s fully operational and supported, but we’re regularly adding new features. The roadmap is a guide to what we have planned, but some things might change.</p>
|
||
<p>You can <a href="{{url_for('.feedback', ticket_type='ask-question-give-feedback')}}">contact us</a> for more detail about these features, or to suggest something else you’d like Notify to offer.</p>
|
||
|
||
<h2 class="heading-medium">January to March 2019</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Update your team members’ phone numbers and email addresses</li>
|
||
<li>Group your templates into folders</li>
|
||
<li>Specify which template folders different team members can access</li>
|
||
<li>Choose first or second postage class for letters</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">April to June 2019</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Send the full range of Welsh characters in text messages</li>
|
||
<li>Send one-off letters (using the interface)</li>
|
||
<li>Email documents to your users (using the interface)</li>
|
||
<li>Save work in progress/draft templates</li>
|
||
<li>Send emails using NHS and Parliament addresses</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">July to September 2019</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Create multi-lingual letter templates</li>
|
||
<li>Receive a feed of letters that have been 'returned to sender'</li>
|
||
<li>Add two-factor authentication for documents emailed to your users</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">October 2019 onwards</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Distribute the delivery of a batch of messages over a number of hours</li>
|
||
<li>Specify how long Notify will try to deliver a text message for</li>
|
||
<li>Scan incoming and outgoing messages for banned content</li>
|
||
<li>Receive usage and reporting data via the API</li>
|
||
<li>Choose different ways to pay for your Notify usage</li>
|
||
<li>Check mobile numbers are valid before sending text messages</li>
|
||
</ul>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|