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

43 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
{% 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 %}
2019-07-09 16:35:02 +01:00
Reply-to email address
{% endblock %}
{% block maincolumn_content %}
2019-04-29 11:44:05 +01:00
{{ page_header(
2019-07-09 16:35:02 +01:00
'Reply-to email address',
2019-04-29 11:44:05 +01:00
back_link=url_for('.service_settings', service_id=current_service.id)
) }}
2016-08-24 15:31:49 +01:00
<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.
2019-07-09 16:35:02 +01:00
This email address cannot receive replies.
2016-08-24 15:31:49 +01:00
</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>
2019-07-09 16:35:02 +01:00
Your service cannot go live until youve done this.
2016-08-24 15:31:49 +01:00
</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
) }}
2019-04-29 11:44:05 +01:00
{{ page_footer('Save') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
{% endblock %}