2019-05-14 17:53:00 +01:00
|
|
|
{% from "components/banner.html" import banner %}
|
|
|
|
|
|
|
|
|
|
<div class="ajax-block-container">
|
|
|
|
|
{% if verification_status == "pending" %}
|
|
|
|
|
<p>
|
|
|
|
|
We have sent a notification to {{ reply_to_email_address }} to check if it's a working email address.
|
|
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
Once we receive a delivery confirmation, we will update your list of reply-to email addresses.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
2019-05-16 17:05:55 +01:00
|
|
|
<a href="{{ url_for('main.service_verify_reply_to_address', service_id=service_id, notification_id=notification_id) + "?is_default={}".format(is_default) }}"">Refresh</a>
|
2019-05-14 17:53:00 +01:00
|
|
|
</p>
|
|
|
|
|
{% elif verification_status == "success" %}
|
|
|
|
|
{{ banner("Yay success! Your new reply-to email has been added ^__^", type='default', with_tick=True) }}
|
|
|
|
|
{% elif verification_status == "failure" %}
|
|
|
|
|
{{ banner("Sorry dawg, this email address doesn't seem to be working :d", type='dangerous') }}
|
|
|
|
|
<a href={{ url_for('main.service_add_email_reply_to', service_id=service_id) }}>Try again</a>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|