Files
notifications-admin/app/templates/views/service-settings/set-reply-to-email.html
T

44 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
2018-08-20 16:45:08 +01:00
Email reply-to address
{% endblock %}
{% block maincolumn_content %}
2016-08-24 15:31:49 +01:00
<h1 class="heading-large">
2018-08-20 16:45:08 +01:00
Email reply-to address
2016-08-24 15:31:49 +01:00
</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 cant receive replies.
</p>
<p>
Set up a separate email address to receive replies from
your users, then enter it here.
</p>
2018-10-26 12:13:04 +01:00
{% if current_service.trial_mode %}
2016-08-24 15:31:49 +01:00
<p>
Your service cant go live until youve done this.
</p>
{% endif %}
2018-09-19 12:39:36 +01:00
{% call form () %}
2016-08-24 15:31:49 +01:00
{{ textbox(
form.email_address,
width='2-3',
safe_error_message=True
) }}
{{ page_footer(
'Save',
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
2018-09-19 12:39:36 +01:00
) }}
{% endcall %}
{% endblock %}