Files
notifications-admin/app/templates/views/service-settings/set-reply-to-email.html
karlchillmaid 678dfcd156 Update content
Update references to 'reply-to email' and remove negative contractions
2019-07-09 16:35:02 +01:00

43 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block service_page_title %}
Reply-to email address
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Reply-to email address',
back_link=url_for('.service_settings', service_id=current_service.id)
) }}
<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 cannot receive replies.
</p>
<p>
Set up a separate email address to receive replies from
your users, then enter it here.
</p>
{% if current_service.trial_mode %}
<p>
Your service cannot go live until youve done this.
</p>
{% endif %}
{% call form () %}
{{ textbox(
form.email_address,
width='2-3',
safe_error_message=True
) }}
{{ page_footer('Save') }}
{% endcall %}
{% endblock %}