mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-12 09:24:15 -04:00
Add some explaining to the email reply to page
This commit is contained in:
@@ -327,7 +327,7 @@ class ProviderForm(Form):
|
||||
|
||||
|
||||
class ServiceReplyToEmailFrom(Form):
|
||||
email_address = email_address()
|
||||
email_address = email_address(label='Email reply to address')
|
||||
|
||||
|
||||
class ServiceSmsSender(Form):
|
||||
|
||||
@@ -56,13 +56,13 @@
|
||||
|
||||
</div>
|
||||
|
||||
{% if false and current_user.has_permissions([], admin_override=True) %}
|
||||
{% if current_user.has_permissions([], admin_override=True) %}
|
||||
|
||||
<h2 class="heading-medium">Platform admin settings</h2>
|
||||
|
||||
{{ browse_list([
|
||||
{
|
||||
'title': 'Set email branding',
|
||||
'title': 'Email branding',
|
||||
'link': url_for('.service_set_branding_and_org', service_id=current_service.id)
|
||||
},
|
||||
{
|
||||
|
||||
@@ -3,14 +3,31 @@
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
|
||||
{% block page_title %}
|
||||
Request to go live – GOV.UK Notify
|
||||
Email reply to address – GOV.UK Notify
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<div class="grid-row">
|
||||
<div class="column-three-quarters">
|
||||
<h1 class="heading-large">Set email reply to address</h1>
|
||||
<h1 class="heading-large">
|
||||
Email reply to address
|
||||
</h1>
|
||||
<p>
|
||||
Your emails will be sent from
|
||||
{{ current_service.email_from }}@notifications.service.gov.uk.
|
||||
This is so they have the best chance of being delivered.
|
||||
This email address can’t receive replies.
|
||||
</p>
|
||||
<p>
|
||||
Set up a separate email address to receive replies from
|
||||
your users, then enter it here.
|
||||
</p>
|
||||
{% if current_service.restricted %}
|
||||
<p>
|
||||
Your service can’t go live until you’ve done this.
|
||||
</p>
|
||||
{% endif %}
|
||||
<form method="post">
|
||||
{{ textbox(
|
||||
form.email_address,
|
||||
|
||||
Reference in New Issue
Block a user