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