Blog · July 11, 2026
SPF fail: what it means when your email flunks the sender check
An SPF fail means the server that sent your email is not on your domain’s public list of approved senders, so the receiving inbox treats the message as possibly forged. It usually happens because a tool sending email for you was never added to that list, or because the list doesn’t exist at all.
That’s the short answer. The longer one matters, because an SPF fail is one of the quietest ways a business loses money: the quote you sent gets filtered, the customer assumes you never replied, and nobody tells you it happened.
The approved-senders list
Every domain can publish a small text record that says, in effect, “these are the only servers allowed to send email in my name.” That record is called SPF. When your message arrives at Gmail or Outlook, the receiving side looks up the list and checks whether the server that delivered your email is on it.
If it is, you pass. If it isn’t, that’s the fail you saw. The inbox now has a real problem with your message: anyone in the world can type your address into the “from” field of an email, and the approved-senders list is one of the main ways a receiver tells you apart from an impostor. A message that flunks the check doesn’t get the benefit of the doubt.
What a real record looks like
The list is public, so we can look at anyone’s. Here is Google’s own SPF record, exactly as their domain publishes it today:
v=spf1 include:_spf.google.com ~all
Reading it in plain English: “this is an SPF record” (v=spf1), “the servers named on our internal list are approved” (include:_spf.google.com), and “treat everyone else with suspicion” (~all). Three parts, one line of text. That single line is doing the bouncer-at-the-door work for every email claiming to come from google.com.
Your domain either has a line like this or it doesn’t, and if it does, it either names all the services that really send for you or it doesn’t. Those are the only two ways to fail.
The four results a receiver can get
“Fail” isn’t the only outcome, and the differences change what happens to your message.
| Result | What it means | What the inbox usually does |
|---|---|---|
| Pass | The sending server is on your list | Treats the sender as genuine |
| Softfail | Not on the list, and your record says “be suspicious” | Spam folder, or extra scrutiny |
| Fail (hard) | Not on the list, and your record says “refuse it” | Often rejected outright |
| None | Your domain publishes no list at all | No way to verify you; trust suffers |
The bruising detail is that “none” is not a safe middle ground. When we scanned 4,673 small businesses across the US and Canada in June 2026, 21% had no usable SPF record at all, and more than half were missing at least one of the core email checks. Receivers have tightened accordingly: Gmail and Yahoo started enforcing authentication rules in 2024, Microsoft began permanently rejecting non-compliant bulk senders in May 2025, and Google escalated to outright rejections in late 2025. A gap that cost you nothing three years ago now costs you the message.
Why honest businesses fail
Nobody sets out to fail SPF. It happens in slow motion: you sign up for a newsletter tool, your web designer adds a contact form, your booking system starts sending confirmations. Each of those services sends email in your name from their servers, and each one needs to be added to your list. Miss one, and everything that service sends flunks the check while the email you type by hand keeps working fine, which is exactly why the problem hides for months.
Real estate offices are the worst-hit group in our study, with seven in ten missing at least one core record, but no industry we scanned was close to clean.
Common questions
Does an SPF fail mean I’ve been hacked? Almost never. It usually means a legitimate service you use was never put on your list. The record needs updating, not your passwords. That said, the same gap that filters your real mail also makes you easier to impersonate, so it’s worth closing either way.
Will fixing SPF stop my email going to spam? It removes one of the most common causes, but it’s one check of several. Receivers also look at DKIM, DMARC, and your sending reputation, so a full pass rules out the usual suspect rather than guaranteeing the inbox. The plain-English guide walks through how the checks fit together.
I emailed myself and it arrived, so the fail must be wrong? Your own inbox is the one place your mail gets waved through, the way a letter posted to your own address always shows up. That test can’t catch an SPF problem. What counts is the check a stranger’s inbox runs before deciding to trust you.
Do I need to be technical to fix it? The fix is a one-line text entry in your domain settings, free to add. The know-how is in finding out which services send for you and writing the line correctly, and that starts with seeing what your domain publishes right now.
See your own list
Your SPF record is public, the same way Google’s was above. Run your domain through the free scanner and you’ll see in a few seconds whether you have a record, what it says, and which of the other checks need attention. If SPF comes back red, you’ve likely found where your missing emails have been going.
Check your domain in 30 seconds
Enter your domain. We read SPF, DKIM, DMARC, and MX from public DNS and explain what's missing in plain English - no signup, no account.
Free · no account · results in ~30 seconds
References
- Google: Email sender guidelines Bulk-sender authentication and rejection rules (2024 onward).
- Microsoft: Strengthening email ecosystem, requirements for high-volume senders Outlook rejection of non-compliant bulk senders, effective May 2025.
- RFC 7208: Sender Policy Framework (SPF) The specification that defines SPF records and results.
- State of Small Business Email, US and Canada (June 2026) Our scan of 4,673 firms; source of the 21% missing-SPF figure.
Published July 11, 2026.