mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/service-link.html" import service_link %}
|
||
|
||
{% block per_page_title %}
|
||
Branding and customization
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="font-body-2xl margin-bottom-3">Branding and customization</h1>
|
||
|
||
<!-- <p>This page explains how to:</p>
|
||
|
||
<ul class="list list-bullet">
|
||
<li><a class="usa-link" href="#email-branding">change your email branding</a></li>
|
||
<li><a class="usa-link" href="#reply-to-address">add a reply-to email address</a></li>
|
||
<li><a class="usa-link" href="#text-message-sender">change the text message sender</a></li>
|
||
</ul>
|
||
|
||
<h2 class="font-body-lg" id="email-branding">Change your email branding</h2>
|
||
|
||
<p>The default branding for email templates is the Notify.govlogo.</p>
|
||
|
||
<p>To change your email branding:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="bold">Email settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="bold">Change</b> on the <b class="bold">Email branding</b> row.</li>
|
||
</ol>
|
||
|
||
<h2 class="font-body-lg" id="reply-to-address">Add a reply-to email address</h2>
|
||
|
||
<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 class="usa-link" href="{{ url_for('main.trial_mode_new') }}">request to go live</a>.</p>
|
||
|
||
<p>To add a reply-to email address:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="bold">Email settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="bold">Manage</b> on the <b class="bold">Reply-to email addresses</b> row.</li>
|
||
<li>Select <b class="bold">Add reply-to address</b>.</li>
|
||
</ol> -->
|
||
|
||
<h2 class="font-body-lg" id="text-message-sender">Change the text message sender</h2>
|
||
|
||
<p>The text message sender tells your users who the message is from.</p>
|
||
|
||
<p>To change the text message sender from the default of ‘Notify.gov’:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="bold">Text message settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="bold">Manage</b> on the <b class="bold">Text message senders</b> row.</li>
|
||
<li>Select <b class="bold">Change</b> or <b class="bold">Add text message sender</b>.</li>
|
||
</ol>
|
||
|
||
{% endblock %}
|