Files
notifications-admin/app/templates/views/guidance/branding-and-customisation.html

71 lines
2.7 KiB
HTML
Raw Normal View History

2020-01-21 09:37:06 +00:00
{% extends "content_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 %}
2020-01-22 10:58:58 +00:00
Branding and customisation
2020-01-21 09:37:06 +00:00
{% endblock %}
{% block content_column_content %}
<h1 class="heading-large">Branding and customisation</h1>
<p>This page explains how to:</p>
<ul class="list list-bullet">
<li><a href="#email-branding">change email branding</a></li>
<li><a href="#reply-to-address">add a reply-to email address</a></li>
<li><a href="#text-message-sender">change the text message sender</a></li>
<li><a href="#letter-branding">change letter branding</a></li>
</ul>
2020-01-21 16:07:02 +00:00
<h2 class="heading-medium" id="email-branding">Change your email branding</h2>
2020-01-21 09:37:06 +00:00
2020-01-21 14:30:32 +00:00
<p>The default branding for email templates is the GOV.UK logo.</p>
2020-01-21 09:37:06 +00:00
<p>To change your email branding:</p>
<ol class="list list-number">
<li><a href="{{ url_for('.register') }}">Sign in to Notify</a>.</li>
<li>Go to the Settings page.</li>
<li>In the Email settings section, select Change on the Email branding row.</li>
</ol>
<h2 class="heading-medium" id="reply-to-address">Add a reply-to email address</h2>
2020-01-21 14:30:32 +00:00
<p>You can choose the email address that your users reply to. You must add at least one reply-to address for your service before you can <a href="{{ url_for('main.trial_mode_new') }}">request to go live</a>.</p>
2020-01-21 09:37:06 +00:00
<p>To add a reply-to email address:</p>
<ol class="list list-number">
<li><a href="{{ url_for('.register') }}">Sign in to Notify</a>.</li>
<li>Go to the Settings page.</li>
<li>In the Email settings section, select Manage on the Reply-to email addresses row.</li>
<li>Select Add reply-to address.</li>
</ol>
<h2 class="heading-medium" id="text-message-sender">Change the text message sender</h2>
<p>The text message sender name tells your users who the message is from.</p>
<p>To change the text message sender from the default of GOVUK:</p>
<ol class="list list-number">
<li><a href="{{ url_for('.register') }}">Sign in to Notify</a>.</li>
<li>Go to the Settings page.</li>
<li>In the Text message settings section, select Manage on the Text message senders row.</li>
2020-01-21 16:07:02 +00:00
<h2 class="heading-medium" id="letter-branding">Change your letter branding</h2>
2020-01-21 09:37:06 +00:00
2020-01-21 14:30:32 +00:00
<p>Letter templates do not have default branding.</p>
<p>To add a logo to your letters:</p>
2020-01-21 09:37:06 +00:00
<ol class="list list-number">
<li><a href="{{ url_for('.register') }}">Sign in to Notify</a>.</li>
<li>Go to the Settings page.</li>
<li>In the Letter settings section, select Change on the Letter branding row.</li>
</ol>
{% endblock %}