{% from "components/banner.html" import banner, banner_wrapper %} {% from "components/textbox.html" import textbox %} {% from "components/checkbox.html" import checkbox %} {% from "components/page-header.html" import page_header %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %}
{% if verification_status == "pending" %}

We’re checking that ‘{{ reply_to_email_address }}’ is a real email address.

This can take a minute

Refresh

{% elif verification_status == "success" %} {{ banner("‘{}’ is ready to use".format(reply_to_email_address), type='default', with_tick=True) }}
Continue
{% elif verification_status == "failure" %} {% call banner_wrapper(type='dangerous') %}

We sent an email to ‘{{ reply_to_email_address }}’ but it wasn’t delivered.

You can try again, or use a different address.

{% endcall %}

Let recipients send replies to a shared inbox that’s managed by your team.

Do not use your own email address for replies.

{% if replace and replace != "False" %} {% set form_url = url_for('.service_edit_email_reply_to', service_id=service_id, reply_to_email_id=replace) %} {% else %} {% set form_url = url_for('.service_add_email_reply_to', service_id=service_id) %} {% endif %} {% call form_wrapper( action = form_url ) %} {{ textbox( form.email_address, width='2-3', safe_error_message=True ) }} {% if form.is_default.data %}

This is the default reply-to address for {{ current_service.name }} emails

{% else %}
{{ checkbox(form.is_default) }}
{% endif %} {{ page_footer('Try again') }} {% endcall %} {% endif %}