SPF record
SPF lists which servers can send email as your domain. Without it, anyone can forge your From address. The DNS record that fixes it.
What it is
SPF (Sender Policy Framework) is a DNS TXT record on a domain's apex that lists which mail servers are authorized to send email as that domain. A receiving mail server checks the sending IP against this list before accepting a message.
Exactly one SPF record is allowed per domain — RFC 7208 treats two as a permanent error, which receiving servers handle by failing SPF entirely. A domain with duplicate records is worse off than one with none.
Why it matters
Without SPF, nothing stops anyone from sending email that claims to be from your domain — a common setup for phishing that impersonates a company to its own customers or vendors.
It's a single DNS record, published once, that lets receiving servers reject forged mail before it reaches an inbox. SPF alone isn't sufficient — pair it with DKIM and DMARC — but it's the cheapest of the three to get right.
How to fix it
with a reference docexample.com. IN TXT "v=spf1 include:_spf.google.com ~all"example.com. IN TXT "v=spf1 include:_spf.google.com include:sendgrid.net ~all"Related checks
3This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.