{% 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.

{% call form_wrapper( action = url_for('.service_add_email_reply_to', service_id=service_id) ) %} {{ textbox( form.email_address, width='2-3', safe_error_message=True ) }} {% if not first_email_address %}
{{ checkbox(form.is_default) }}
{% endif %} {{ page_footer('Try again') }} {% endcall %} {% endif %}