2. SPF (Optional)
{% if custom_domain.spf_verified %}
✅
{% else %}
🚫
{% endif %}
SPF
(Wikipedia↗) is an email
authentication method
designed to detect forging sender addresses during the delivery of the email.
Setting up SPF is highly recommended to reduce the chance your emails ending up in the recipient's Spam folder.
Your DNS is not correctly set. The TXT record we obtain is:
{% if not spf_errors %}
(Empty)
{% endif %}
{% for r in spf_errors %}
{{ r }}
{% endfor %}
{% if custom_domain.spf_verified %}
Without SPF setup, emails you sent from your alias might end up in Spam/Junk folder.
{% endif %}