4. DMARC (Optional)
{% if custom_domain.dmarc_verified %}
✅
{% else %}
🚫
{% endif %}
DMARC
(Wikipedia↗)
is designed to protect the domain from unauthorized use, commonly known as email spoofing.
Built around SPF and DKIM, a DMARC policy tells the receiving mail server what to do if
neither of those authentication methods passes.
Add the following TXT DNS record to your domain.
Your DNS is not correctly set.
The TXT record we obtain is:
{% if not dmarc_errors %}
(Empty)
{% endif %}
{% for r in dmarc_errors %}
{{ r }}
{% endfor %}
{% if custom_domain.dmarc_verified %}
Without DMARC setup, emails sent from your alias might end up in the Spam/Junk folder.
{% endif %}