app-MAIL-temp/templates/emails/transactional/reply-error.html

31 lines
743 B
HTML
Raw Normal View History

2020-06-20 16:19:01 +02:00
{% extends "base.html" %}
{% block content %}
2021-01-28 16:34:24 +01:00
{{ render_text("Hi") }}
2020-06-20 16:19:01 +02:00
{% call text() %}
Your email cannot be sent to <b>{{ contact.email }}</b> from your alias <b>{{ alias.email }}</b>.
{% endcall %}
{% call text() %}
Can you please verify <b>{{ contact.email }}</b> is a valid address?
{% endcall %}
{% call text() %}
Usually this is because the DNS record of <b>{{ contact_domain }}</b> does not exist.
{% endcall %}
{% call text() %}
You can check its DNS record on any DNS checker websites, for example https://mxtoolbox.com/SuperTool.aspx
{% endcall %}
{% call text() %}
Please let us know if you have any question. <br>
Best, <br>
SimpleLogin team.
{% endcall %}
{% endblock %}