Content

SPF, DKIM and DMARC for Cold Email, Plainly Explained (2026)

2026-07-22· 7 min read

SPF, DKIM and DMARC are the three DNS records that prove your email is really from you, and in 2026 inbox providers quietly bin cold email that fails any of them. Get them right once and they mostly run themselves. Get them wrong and it does not matter how good your copy is, because most of it never reaches a human.

We run cold email at scale every day, and this is the single most common reason a campaign underperforms before a word of the message is even read. So let us walk through what each record does, how they work together, and how to set them up without a spec dump.

The one-sentence version of each

Three records, three different jobs. They are easy to confuse because they all touch email and all live in DNS, but each answers a distinct question a receiving server asks.

  • SPF (Sender Policy Framework) answers: is this server allowed to send mail for this domain? It is a public list of the IPs and services permitted to send on your behalf.
  • DKIM (DomainKeys Identified Mail) answers: was this message actually signed by the domain, and was it tampered with in transit? It attaches a cryptographic signature that the receiver verifies against a public key in your DNS.
  • DMARC (Domain-based Message Authentication, Reporting and Conformance) answers: what should the receiver do if SPF and DKIM disagree with the visible From address, and where do I report it? It is the policy layer that ties the other two together.

That last point is the one people miss. SPF and DKIM each validate a domain, but not necessarily the domain your recipient sees in the From line. DMARC is what forces those to line up, which is called alignment, and alignment is the whole game.

How they actually work together

Picture a receiving mail server getting one of your messages. It runs three checks in sequence.

First it looks at the connecting IP and checks it against your SPF record. If the IP is on the list, SPF passes. Second it reads the DKIM signature in the header, fetches your public key from DNS, and confirms the signature matches and nothing was altered. If it does, DKIM passes.

Then DMARC does the important part. It checks whether the domain that passed SPF or DKIM matches the domain in the visible From address. You only need one of the two to pass and align. If neither aligns, the message fails DMARC, and your published policy tells the receiver whether to let it through, send it to spam, or reject it outright.

This is why you cannot cherry-pick. SPF alone can be defeated by forwarding. DKIM alone says nothing about who was allowed to send. DMARC on its own has nothing to enforce. Together they form a chain where each covers the others' blind spots, and inbox providers in 2026 increasingly expect to see all three before they trust a sending domain, especially a cold one with no prior reputation.

Setting up SPF correctly

SPF is a single TXT record on your sending domain. The mistakes we see are almost never syntax, they are scope.

  1. Publish exactly one SPF record. Two SPF records on the same domain is an automatic fail. If you use several sending services, merge them into one record with multiple include: statements.
  2. List every service that sends for you. Your email platform, your outreach tool, any transactional service. Anything missing will fail SPF from that source.
  3. Stay under the ten DNS-lookup limit. SPF caps the number of nested lookups, and each include: can chain more. Go over and the whole record errors out. Flatten or consolidate services if you are near the edge.
  4. End with ~all or -all. This tells receivers to treat mail from unlisted sources as suspicious (soft fail) or reject it (hard fail). Never use +all, which authorizes the entire internet to send as you.

SPF breaks silently. Nothing tells you it failed except your open rates quietly sliding, which is why DMARC reporting below matters so much.

Setting up DKIM correctly

DKIM is a public/private key pair. Your sending service holds the private key and signs each outgoing message; you publish the matching public key as a DNS record so receivers can verify it.

In practice you do not generate keys by hand. Your email or outreach platform generates them and gives you one or more DNS records to paste in, usually at a selector like s1._domainkey.yourdomain.com. Two things to get right:

  • Use a 2048-bit key where your provider allows it. Older 1024-bit keys still verify but are weaker, and some receivers now discount them.
  • Sign with the same domain your From address uses, or a subdomain of it, so DKIM aligns for DMARC. A signature that validates but points at your provider's domain instead of yours passes DKIM but fails alignment, which defeats the purpose.

Once published, DKIM is the most durable of the three because it survives most forwarding, which is exactly where SPF tends to fall over.

Setting up DMARC correctly

DMARC is one more TXT record, at _dmarc.yourdomain.com. It carries your policy and, crucially, an address for reports.

Start relaxed and tighten over time. Publishing an enforcing policy on day one, before you know which of your own systems are misconfigured, is how legitimate mail gets rejected.

Policy (p=)What receivers doWhen to use it
noneDeliver as normal, just reportWeek one, while you collect data
quarantineSend failing mail to spamOnce your real senders all pass and align
rejectRefuse failing mail entirelyThe end state, for full protection

Always include a reporting address (rua=mailto:...). Those aggregate reports are the only window you get into who is sending as your domain, which sources pass, and which fail. We treat the move from none to quarantine to reject as a staged rollout driven by what those reports show, not a calendar. When every legitimate source passes and aligns, you tighten. This is the same discipline behind avoiding the other cold outbound mistakes that quietly kill campaigns.

Why this gates deliverability in 2026

Authentication is no longer a nice-to-have. Major inbox providers now treat SPF, DKIM and a valid DMARC policy as a baseline requirement for bulk and cold senders, and they lean on it harder than ever because it is the cheapest reliable signal of whether a domain can be trusted.

Here is the honest part. Authentication is necessary, not sufficient. Passing all three gets you eligible for the inbox; it does not guarantee placement. Reputation, sending volume, engagement, list quality and content still decide the rest. What authentication does is remove the excuse a provider needs to bin you on sight. Skip it and you are filtered before reputation ever enters the conversation. That is why we treat it as step zero in our broader cold email deliverability work, and why our email agent refuses to send from a domain that is not fully authenticated and warmed.

It also compounds with everything else you do. A clean, aligned sending domain makes multi-channel sequences land, protects your speed-to-lead follow-ups, and keeps cold-lead campaigns out of the spam folder where good copy goes to die. Get the plumbing right and the rest of the Leaderra platform has something solid to build on.

If you want to see how we handle authentication, warming and sending as one system rather than three separate chores, watch the live demo or book a meeting.

FAQ

Do I need all three of SPF, DKIM and DMARC?

Yes. SPF and DKIM each validate part of the picture, and DMARC ties them together and tells receivers what to do when something fails. In 2026 major inbox providers expect all three from cold and bulk senders, and missing any one is a common reason mail lands in spam.

What is the difference between SPF and DKIM?

SPF checks whether the sending server's IP is authorized to send for your domain. DKIM checks whether the message carries a valid cryptographic signature from your domain and was not altered in transit. SPF is about who is allowed to send; DKIM is about proving the message is genuine and intact.

Should I start DMARC at p=reject?

No. Start at p=none so you only collect reports without affecting delivery, then move to quarantine and finally reject once you confirm every legitimate sender passes and aligns. Jumping straight to reject risks blocking your own valid mail before you have found and fixed misconfigured sources.

Why does my email still land in spam if all three pass?

Authentication makes you eligible for the inbox but does not guarantee placement. Reputation, sending volume, recipient engagement, list quality and message content all still matter. Passing SPF, DKIM and DMARC removes a hard blocker, but deliverability depends on doing the rest well too.

How long does it take for these records to work?

The DNS records themselves usually propagate within a few hours, sometimes up to a day. Verification by receivers happens on the next message you send. Building sender reputation on a newly authenticated domain, however, takes longer and depends on gradual warming and consistent, engaged sending.

Put this into practice

Leaderra's four AI agents qualify, chase, and book meetings on your leads — verified, scored, and briefed.

Related reading