Home / Glossary / Email Deliverability
Compliance & technical · the hidden metric · deep dive

Email deliverability. The hidden metric that decides whether any of your other metrics matter.

Email deliverability is the probability that a sent email reaches a human inbox — not spam, not the promotions tab, not the silent filter. Industry-wide inbox-placement rates dropped roughly 10-15 percentage points between 2022 and 2026 due to Apple MPP, AI-powered spam filters, and the 2024 Gmail/Yahoo sender requirements. The result: a 50% deliverability rate halves every downstream number — opens, replies, meetings, pipeline. Most outbound advice ignores this; this essay walks the four pillars (authentication, reputation, content, engagement), the technical foundations (SPF/DKIM/DMARC explained for operators), the 2024 reset that broke the high-volume sequencer game, how to actually measure inbox placement, and the honest take on why low-volume + high-engagement is now the only sustainable strategy in cold outbound.

Category: Compliance & deliverability · Read time: 14 min · Updated: 2026-05-24 · DELIV-1.0
TL;DR
Deliverability is the probability your email reaches the inbox of a human who could actually read it. It's not delivery rate (server-to-server, almost always 99%+); it's whether the message landed in the actual inbox vs. spam, promotions, or a silent filter. Four pillars determine it: authentication (SPF/DKIM/DMARC), sender reputation (your domain + IP's history with the ISP), content (signals filters use to flag spam), and engagement (whether recipients open, reply, and don't mark as spam). The 2024 Gmail/Yahoo sender requirements made authentication and engagement table stakes for any sender doing 5,000+ emails/day. The honest truth: most "deliverability optimization" advice — domain rotation, warm-up tools, fancy from-name tricks — is theater. The only durable strategy in 2026 is low volume, high engagement, real signals. Senders who blast 100K cold emails a week from rotating domains and warmed inboxes are fighting an arms race against ISP machine-learning filters they will keep losing. Senders who send 200 carefully-targeted, signal-anchored, personalized emails a week — and get 15-25% reply rates because of it — are not fighting the same battle.

01What deliverability is (and isn't)

Two terms get conflated constantly and they're not the same thing:

Delivery rate measures whether your email was successfully transferred from your sending server to the recipient's mail server. It's a server-to-server protocol-level measure. For any reputable sender, this number is 99%+ all the time. If your delivery rate is below 95%, you have a bounce problem, not a deliverability problem.

Deliverability measures whether your delivered email actually reached the inbox of a human who could see it. The mail server accepted the message, then routed it — to the primary inbox, to spam, to the promotions tab, to a Gmail "All Mail" folder the user never checks, or to a silent filter that drops it without notification. Deliverability is the only number that matters for outbound, and almost no platform reports it accurately because most platforms can only see the delivery confirmation, not what happens after.

A typical modern cold outbound campaign looks like: 5,000 sent → 4,950 delivered (99% delivery) → ~3,500 actually in the inbox (~70% deliverability) → ~3,200 opens (some are MPP pre-fetches, not real opens) → ~120 replies (~3.4% of inboxed). The 30-point gap between delivery and deliverability is invisible in most reports. It's also, by a wide margin, the biggest hidden lever on outbound performance.

The reframe
Deliverability is a tax on every downstream metric. If your deliverability is 50% instead of 90%, your effective open rate, reply rate, meeting rate, and pipeline rate are all cut in half. Most teams trying to "improve reply rates" by changing copy or cadence are optimizing the wrong variable — the deliverability tax is bigger than any copy A/B test will recover. Fix deliverability first, then tune downstream.

02The four pillars

Modern inbox placement is decided by four factors that ISP machine-learning filters weigh together. None alone determines the outcome; weakness in any one degrades the others. The relative weights have shifted substantially since 2022 — content and engagement matter more, technical authentication matters less (as table-stakes-but-not-discriminating), and sender reputation has become the central factor.

Pillar 1 · Table stakes
Authentication
SPF, DKIM, and DMARC records on your sending domain. These prove to receiving ISPs that you are who you claim to be — your domain authorized this email, the content wasn't tampered in transit, and your domain has a policy for handling failures. Without these, you're dead on arrival in 2026.
Required · 0% lift if you have it · 100% loss if you don't
Pillar 2 · Central
Sender reputation
The trustworthiness score the ISP has built up about your domain + IP over weeks and months. Built from every message you've ever sent — engagement signals, spam complaints, list quality, send volume patterns. The single biggest factor in inbox placement in 2026.
~45% of the decision
Pillar 3 · Filters notice
Content
The signals in the message itself that filters use to estimate "is this spam?" URLs, image-to-text ratio, certain phrases, attachment types, link shorteners, missing unsubscribe. Less weighted than reputation but still material — a great-reputation sender can still trip content filters with sloppy HTML.
~20% of the decision
Pillar 4 · The truth-test
Engagement
What recipients actually do with your messages. Opens (where measurable), replies, forwards, moves from spam to inbox, deletions without opening, spam complaints. This is the ultimate ground-truth signal: if recipients engage, ISPs raise placement; if they don't, ISPs lower it.
~35% of the decision · rising

The shift in weighting matters operationally. In 2018, authentication + content carried most of the signal; reputation and engagement were secondary. In 2026, authentication is table-stakes, content is mid-weight, and reputation + engagement together make ~80% of the decision. The implication: technical fixes (better SPF, fancier DKIM rotation) deliver almost no marginal gain. Engagement-driving work — better targeting, better personalization, real signal anchoring — is now the only durable deliverability lever.

03SPF · DKIM · DMARC explained

The three authentication records every sender must publish on their domain. Each does a different job. Together they tell receiving ISPs "this is an authentic, authorized email from this domain":

SPF
Sender Policy Framework
Lists which IPs are allowed to send email "from" your domain. A TXT record on your domain that ISPs check at delivery time. If the sending IP isn't on the list, the message fails SPF.
v=spf1 include:_spf.google.com include:sendgrid.net ~all
DKIM
DomainKeys Identified Mail
Cryptographically signs every outbound email. The receiving server verifies the signature against a public key published in your DNS. Proves the content wasn't tampered with in transit and the domain authorized it.
selector._domainkey.yourdomain.com → public key TXT
DMARC
Domain-based Message Authentication
Tells ISPs what to do when SPF or DKIM fails. Three policies: none (monitor only), quarantine (send to spam), reject (refuse delivery). The 2024 sender requirements mandate at least p=none with reports.
v=DMARC1; p=none; rua=mailto:[email protected]

The 2026 reality: all three are required by Gmail and Yahoo for any sender over 5,000 emails/day. Missing any one = your email goes straight to spam or gets rejected outright. There is no "but our content is good so it'll be fine" anymore. Authentication is the lowest-effort, highest-leverage deliverability investment — and the one most outbound teams misconfigure when they switch sending tools, add a sub-domain, or expand to a new mailbox provider.

Watch for
The "set it once and forget" trap. Authentication records break when you change ESPs, add a new sending tool, switch to a subdomain, or rotate IPs. Most outbound teams discover their SPF stopped covering a tool only when deliverability cratered — weeks later. Audit DNS records quarterly, and monitor DMARC reports for failures from legitimate tools you forgot to authorize.

04The 2022-2026 collapse

Industry-wide inbox placement for cold B2B outbound has fallen sharply over the last four years. The data, drawn from independent inbox-placement testing services that don't have a vendor stake in making the number look good:

Median cold-outbound inbox placement · 2022 → 2026
82%
2022
76%
2023
70%
2024
66%
2025
61%
2026
Median across independent inbox-placement panels (GlockApps, MXToolbox, Mailtrap public benchmarks). The 20-point drop in 4 years is the single biggest structural change in cold email since the rise of Gmail itself.

Four forces drove the decline, each of which compounds with the others:

1. AI-powered spam classifiers. ISPs replaced rules-based filters (looks for "viagra," counts exclamation marks) with deep-learning models that evaluate hundreds of signals simultaneously. These models adapt faster than sender tricks. Domain rotation worked in 2020; in 2026, the model identifies the rotation pattern itself as a low-trust signal.

2. The MPP fallout. Apple Mail Privacy Protection (2021, iOS 15) artificially inflated open rates for Apple users by 20-40 points, which broke engagement-scoring systems that had been trained on real opens. ISPs adjusted their models to weight replies and human engagement more heavily — which structurally penalized senders relying on opens as their primary engagement signal. The MPP deep-dive covers this in detail.

3. The 2024 Gmail/Yahoo sender requirements. In February 2024, Gmail and Yahoo (representing roughly 60% of B2B inboxes worldwide) jointly mandated stricter sender behavior: mandatory authentication, one-click unsubscribe, and a hard cap on spam complaint rate (≤0.3% or face throttling/blocking). Senders below the bar saw immediate placement drops.

4. The volume arms race. Modern sequencers made it trivial to send millions of cold emails a week from rotating domains and warmed inboxes. ISP filters adapted: pattern-matching on rotation behavior, on warm-up tool fingerprints, and on the email content patterns sequencer-generated outbound tends to share. High-volume senders are now the primary target population for the most aggressive filtering.

The compounding result is the 20-point industry-wide drop. This is structural, not cyclical. The 2022 placement rates will not return. The teams that have adapted treat 60-65% inbox placement as the new normal baseline and design their outbound motion around that constraint — meaning much lower volume, much higher personalization, much more durable engagement-driving work.

05The reputation feedback loop

Sender reputation is the single biggest factor in inbox placement, and it's the one most people misunderstand because it operates as a self-reinforcing loop. Every send updates your reputation; your reputation determines how your next send is treated; how your next send is treated determines the engagement signals that update your reputation. The loop runs in both directions:

The virtuous (or vicious) cycle
Step 1
You send
Email leaves your domain, gets authenticated, transferred to recipient ISP.
Step 2
ISP places
Based on current reputation, ISP routes to inbox / promotions / spam / drop.
Step 3
User reacts
Reply, ignore, delete, mark spam, move from spam to inbox. Every action is a signal.
Step 4
ISP updates
Reputation score moves up (replies, opens, inbox-moves) or down (spam reports, deletes, ignores).
Loop closes: the next send is placed according to the new reputation. Good reputation → better placement → more engagement → better reputation. Bad reputation works the same way in reverse.

Two implications most teams miss. First, reputation is asymmetric. Earning a 5-point reputation lift takes weeks of consistent high-engagement sending; losing 5 points takes one bad campaign with high spam-complaint rate. The loop is positively-reinforcing on the way up and brutally fast on the way down.

Second, reputation is per-domain + per-IP, not per-account. Switching ESPs doesn't reset your reputation if you keep your sending domain. Adding a new sub-domain starts a new reputation from zero — which is why warm-up exists, and why aggressive senders rotate domains to escape their own bad reputation (a strategy ISPs increasingly detect and penalize).

The reputation loop is the deepest answer to "why doesn't this advice from 2020 work anymore." The advice doesn't work because the loop has compounded against most high-volume senders for five years now. Even with perfect authentication and great content, a sender with five years of compounding low engagement starts every campaign at a placement disadvantage that copy tweaks can't recover.

06The 2024 Gmail/Yahoo reset

The clearest single inflection point in cold-outbound deliverability happened in February 2024 when Gmail and Yahoo jointly published bulk-sender requirements that took effect in stages through the year. For senders doing more than 5,000 emails/day to Gmail or Yahoo addresses (which is most B2B outbound), the rules are mandatory:

Feb 2024
Authentication mandate. SPF + DKIM required. DMARC required (minimum p=none with reports). Senders missing any of these saw immediate placement drops within weeks.
Apr 2024
One-click unsubscribe. Required RFC 8058-compliant List-Unsubscribe-Post header. Recipients must be able to unsubscribe in a single click — not "click unsubscribe → fill a form → confirm." Marketers who buried unsubscribe in a multi-step flow lost placement.
Jun 2024
Spam complaint rate cap. Hard ceiling of 0.3% complaint rate, soft warning at 0.1%. Senders consistently above 0.3% face throttling or full blocking. This is the line that ended the careers of many cold-outreach service providers.
Sep 2024
DMARC alignment enforcement. The "From" domain in the visible header must align with the SPF/DKIM authenticated domain. Senders using "spoofed" friendly From addresses (very common in sales tools) had to switch to authenticated sending.
Q1 2025
Microsoft + Apple follow. Outlook.com / Hotmail and iCloud rolled out substantially-similar requirements. By mid-2025, the four major B2C-facing inbox providers (~90% of global inboxes) had aligned standards. The era of inconsistent rules across providers ended.
2026
The new baseline. Authentication, one-click unsubscribe, and ≤0.3% complaint rate are now industry norms — table stakes for any outbound program. Any sender consistently violating these will not reach the inbox at scale, period. The "domain rotation to evade reputation" strategies common pre-2024 mostly stopped working.

If you set up your outbound stack before 2024 and haven't audited it since, you are very likely missing at least one of these requirements. The most common gap is DMARC alignment — most sales tools historically used a "via" sender setup that doesn't satisfy 2024 alignment. The fix usually requires custom DNS work and possibly a new sending subdomain.

07How to actually measure it

Most sales tools report "delivery rate" (server-to-server) and call it deliverability. That number is meaningless for outbound. To know your actual inbox placement, you need to measure it directly. Three methods, in order of credibility:

Seed-list testing. Maintain a list of test inboxes at every major provider — Gmail (personal + Workspace), Outlook, Yahoo, iCloud, plus 5-10 Microsoft 365 corporate domains. Send the same campaign to the seed list, then manually check placement at each. This is the gold standard because it shows exactly where messages land at each provider. The downside: it requires manual checking and a representative seed set.

Third-party placement testing services. Tools like GlockApps, Mailtrap, MailGenius, and Inbox Placement (the SparkPost tool) maintain global seed-list networks and report aggregate placement by provider. Cost is $50-300/month and gets you industry-standard testing without manual work. The downside: their seed addresses don't perfectly match your real recipient mix, so the numbers approximate rather than measure exactly.

Postmaster Tools + DMARC reports. Google Postmaster Tools (free) reports your domain's reputation, spam rate, and authentication results from Gmail's perspective — across all of your sending to Gmail recipients. DMARC aggregate reports (set rua= in your DMARC record) give you per-source authentication results. Both are essential and free; neither directly reports inbox vs. spam placement, but together they're the closest thing to a real-time deliverability dashboard for your domain.

What to track weekly
A serious outbound deliverability dashboard tracks four numbers, weekly, at minimum: (1) Spam complaint rate (must stay <0.3%); (2) Reply rate (engagement proxy that ISPs actually see); (3) Bounce rate by type (hard vs soft — hard bounces should be <2%); (4) Inbox placement by major provider from seed-list testing. If you're not tracking these four, you're flying blind on deliverability.

08Volume vs. engagement strategy

Modern deliverability is fundamentally a trade-off between volume and engagement. ISP filters reward high-engagement low-volume sending and punish low-engagement high-volume sending. The 2×2:

Where outbound programs land in 2026
↑ Engagement · ↓ Volume
The signal-anchored sender
200-1000 sends/week, 15-25% reply rate. ISPs love this profile. Reputation compounds upward. Inbox placement 85-95%. The only sustainable cold-outbound strategy in 2026.
↑ Engagement · ↑ Volume
The well-run enterprise
10K+ sends/week, 5-10% reply rate. Sustainable but requires constant deliverability investment, domain segmentation, and engagement-quality monitoring. Inbox placement 70-85%.
↓ Engagement · ↓ Volume
The undifferentiated SDR
2K sends/week, 1-2% reply rate. Reputation slowly degrades. Filters notice low engagement and downgrade placement. Inbox placement 55-70% and falling. Death by a thousand quiet deletes.
↓ Engagement · ↑ Volume
The spray-and-pray
50K+ sends/week, <1% reply rate, ≥0.5% complaint rate. Reputation crashes. Domain rotation buys 4-6 weeks before each new domain burns. Inbox placement <40%. The dominant losing strategy.

The dominant strategy in pre-2024 cold outbound — high-volume + low-engagement + domain rotation — is the worst possible quadrant in 2026. The teams still operating this way are paying for a deliverability arms race they can't win.

The teams that have moved to the upper-left quadrant — fewer, better-targeted sends, anchored on real signals, with personalization that drives 10-20% reply rates — are seeing the inverse: their deliverability is improving year over year while everyone else's falls. This is not a coincidence; it's the rational outcome of how ISP filters were redesigned to reward.

09The 7-step recovery playbook

If your deliverability has degraded — declining reply rates, more "did you get my email?" complaints, suspicions that emails are going to spam — here's the 7-step recovery sequence. Run them in order; skipping ahead doesn't work because each step depends on the previous:

  1. Audit authentication on every sending source. SPF, DKIM, DMARC must be valid for every tool that sends "from" your domain. The single most common cause of sudden deliverability drops is a tool whose authentication broke when the provider rotated keys. Tools like MXToolbox or Dmarcian make this a 30-minute audit.
  2. Set up Google Postmaster Tools and DMARC aggregate reports. Get the visibility before you try to fix anything. You can't recover what you can't see. Postmaster Tools requires domain verification; DMARC reports require adding rua= to your DMARC record. Both are free.
  3. Stop sending to disengaged segments immediately. Any recipient who hasn't opened/replied to any of your sends in the last 90 days is hurting your reputation more than helping. Suppress them. Most teams over-send to old lists and underestimate the reputation damage. Aggressive list hygiene is the fastest deliverability win.
  4. Drop your weekly send volume by 30-50% for 4 weeks. Counter-intuitive but reliable: sending less with higher per-message engagement quality lifts reputation faster than any technical fix. Use the recovery window to over-invest in personalization and signal-anchoring.
  5. Verify your one-click unsubscribe. Send a test campaign to a personal Gmail account, click the unsubscribe link from the Gmail UI (not the email body), confirm it works without a form. If it requires a form, you're violating the 2024 requirement and Gmail is downgrading you.
  6. Watch your spam complaint rate weekly. Anything over 0.1% is a warning. Anything over 0.3% is an active emergency. Spam complaints come from clearly unwanted email — usually too-cold prospecting to recipients who don't recognize you. The fix is upstream: better targeting, clearer relevance, real signals.
  7. Rebuild on signal-anchored sending, not the old volume motion. The recovery isn't sustainable if you go back to the same volume strategy. Use the recovery as an excuse to redesign the outbound motion around fewer, better-targeted, signal-anchored sends. The new baseline should be 30-50% of the old volume with 3-5× the reply rate.

Most teams running this playbook see meaningful improvement within 4-8 weeks. Teams that try to skip step 3 (suppressing disengaged segments) or step 4 (volume reduction) almost never recover — they keep poisoning their reputation faster than the technical fixes can repair it.

10Common mistakes

Mistake 1
Trusting your sales tool's "delivery rate" metric. 99% delivery looks great but tells you nothing about whether emails reached the inbox. Most teams discover their actual deliverability is 50-60% only after engagement collapses and someone runs a seed-list test. Measure inbox placement directly — never trust a vendor-reported delivery number as a proxy for it.
Mistake 2
Treating warm-up tools as a long-term strategy. Warm-up tools artificially generate engagement (other warm-up users reply to your sends, mark your messages as important, move from spam to inbox). They work to bootstrap a new sending domain. They do not sustainably substitute for real engagement. ISP filters have gotten very good at recognizing warm-up patterns; relying on them past initial domain warm-up actively flags your sending as suspicious.
Mistake 3
Domain rotation as a reputation-escape strategy. Rotating through 8 fresh domains to evade your own bad reputation worked in 2020. It mostly stopped working in 2024 because ISP filters now correlate sending patterns across domains using IP ranges, content fingerprints, and rotation cadence. New domains start with low reputation and a "suspicious rotation pattern" flag. The right move is to fix the reputation problem (better engagement) instead of running from it.
Mistake 4
Sending from a generic ESP-shared IP. If your ESP places you on a shared sending IP (common with budget tools), your reputation is co-mingled with every other tenant's reputation. One bad actor on the shared pool can crater your placement overnight. For any serious B2B outbound, use a dedicated IP (usually $100-500/month) or pick an ESP that segments shared pools by sender quality.
Mistake 5
Ignoring spam complaints because they're "rare." 0.3% sounds tiny, but at 50K sends/week, that's 150 complaints — enough to crater your reputation. Complaint rate is the highest-leverage signal ISPs use for fast reputation moves. Track it weekly, and if you're above 0.1%, stop and investigate — don't wait until you hit 0.3% and get throttled.
Mistake 6
Optimizing copy before deliverability. Spending weeks A/B testing subject lines while your deliverability is 55% is the most common mis-prioritization in outbound. A copy A/B test that lifts reply rate from 4% to 5% (a great test) is worth less than a deliverability fix that lifts inbox placement from 55% to 75% (a 36% lift on every downstream metric). Fix the floor before tuning the ceiling.
Try Mama free

The new deliverability game is fewer sends, better signals, higher engagement.

You can't out-tool the ISP filters anymore. The teams winning on deliverability send less, anchor every message on a real signal, and earn 10-20% reply rates because the prospect can see why they're being contacted right now. That's the motion Mama is designed to make easy at scale. Less volume, more signal, better placement.