The four signals every sending domain needs
- MX — points to the mail server that accepts incoming mail. Without this, the domain can't receive mail at all.
- SPF — TXT record listing which IPs and includes are allowed to send mail "from" this domain. End with
-allor~allto enforce. - DMARC — published at
_dmarc.<domain>, tells recipients what to do when SPF/DKIM fails.p=rejectis the strongest policy;p=noneis monitor-only and doesn't actually prevent spoofing. - DKIM — cryptographic signature attached to outgoing mail. The public key is published at
<selector>._domainkey.<domain>. Selectors are domain-specific (Google usesgoogle; SendGrid usess1, s2; Postmark usespm).
JSON API
GET /api/email/<domain>?selector=<selector> returns the same data. Example: /api/email/google.com.
