mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-21 08:29:27 -04:00
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
{% 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">Email</h1>
|
||
|
||
<p>Intro</p>
|
||
|
||
<h2 class="heading-medium">Key features</h2>
|
||
<p>Lead-in line:</p>
|
||
<ul class="list bullet-list">
|
||
<li>create reusable message templates</li>
|
||
<li>personalise the content of your messages</li>
|
||
<li>use your own logo and branding</li>
|
||
<li>send files by email</li>
|
||
<li>set up as many reply-to addresses as you need to</li>
|
||
<li>send bulk messages by uploading a spreadsheet of contact information</li>
|
||
<li>schedule messages to be sent at a particular time</li>
|
||
<li>integrate with the API to send messages automatically</li>
|
||
</ul>
|
||
<h2 class="heading-medium">Pricing</h2>
|
||
<p>It’s free to send emails through GOV.UK Notify.</p>
|
||
<p>Find out more about pricing.</p>
|
||
|
||
<h3 class="heading heading-small">Send files by email</h3>
|
||
<p>You can use the GOV.UK Notify API to upload a file, then send the recipient an email with a secure link to download it.</p>
|
||
<p>Notify uses encrypted links instead of email attachments because:</p>
|
||
<ul class="list bullet-list">
|
||
<li>they're more secure</li>
|
||
<li>you can track when the recipient downloads your document</li>
|
||
<li>email attachments are often marked as spam</li>
|
||
</ul>
|
||
<p>Read the API documentation for more information.</p>
|