15 min read

Cold Email Deliverability in 2026: The Complete Guide

EmailDeliverabilityGuide

The Deliverability Crisis

If your cold emails aren't getting responses, the problem might not be your copy — it might be that no one is seeing them.

In 2026, only 41% of cold emails reach the primary inbox. That number has dropped from 45% last year, largely driven by Google and Microsoft tightening spam filters, introducing stricter sender authentication requirements, and using AI-based content analysis to flag anything that looks like bulk outreach.

The math is brutal: if you send 100 emails and fewer than half arrive in the primary tab, your effective outreach is cut in half before a single person reads your subject line. Multiply that across weeks and months, and you're leaving tens of thousands of dollars in pipeline on the table.

But here's the good news. The teams that invest in proper deliverability infrastructure consistently see 75-90% inbox placement rates. That's not a marginal improvement — it's the difference between a channel that works and one you abandon.

This guide walks through every layer of the deliverability stack: domain infrastructure, DNS authentication, warmup protocols, copy optimization, monitoring, and troubleshooting. Whether you're launching cold email for the first time or diagnosing why your existing campaigns are underperforming, this is the playbook.

For a hands-on system that automates much of this setup, check out our email warmup system.

The Foundation: Domain Infrastructure

1. Dedicated Sending Domains

Never send cold email from your primary domain. This is the single most important rule in cold outreach. If your primary domain gets flagged, it affects every email your company sends — internal communications, client correspondence, invoicing, everything.

Instead, register dedicated sending domains:

  • Register 3-5 lookalike domains that are clearly associated with your brand but separate from your main domain. For example, if your primary domain is mirtech.com, you might register mirtech.co, getmirtech.com, mirtechgrowth.com, or trymirtech.com.
  • Avoid suspicious TLDs. Stick to .com, .co, .io, or your country-code TLD. Unusual extensions like .xyz or .info carry higher spam risk out of the gate.
  • Register through a reputable registrar. Google Domains (now Squarespace), Namecheap, or Cloudflare all work well. The registrar itself doesn't affect deliverability, but having easy DNS management saves time.
  • Set up a basic landing page on each domain. Naked domains with no web presence look suspicious to mailbox providers. Even a simple redirect to your primary site or a one-page site with your logo and a brief description is enough.

2. Email Provider Setup

Your choice of email provider shapes your sending infrastructure and directly impacts deliverability.

Google Workspace — Best for low-to-medium volume sending (under 50/day per inbox). Google's deliverability to other Gmail users is strong, but they're aggressive about rate limiting. Create 2-3 inboxes per domain. Cost: approximately $7/user/month.

Microsoft 365 — Strong deliverability to corporate inboxes (many enterprises use Outlook/Exchange). Better integration with LinkedIn Sales Navigator data. Create 2-3 inboxes per domain. Cost: approximately $6/user/month.

Dedicated SMTP providers — When you need to scale beyond 100 emails/day per inbox, consider a dedicated SMTP layer. This gives you your own IP address and full control over sending reputation. The tradeoff is more setup complexity and the need to warm the IP from scratch.

The inbox math: If you need to send 500 emails per day, at 50 emails per inbox, you need 10 inboxes. Spread across 3-4 domains, that's 2-3 inboxes per domain. Each inbox needs its own warmup cycle, which means staggering your launch over 4-6 weeks.

3. DNS Authentication Records

Every sending domain needs three DNS records configured correctly: SPF, DKIM, and DMARC. These are non-negotiable. Without all three, modern mailbox providers will either reject your emails outright or route them to spam.

SPF (Sender Policy Framework)

SPF tells receiving servers which mail servers are authorized to send email on behalf of your domain. It's a TXT record on your domain's DNS.

Example SPF record for Google Workspace:

Type: TXT
Host: @
Value: v=spf1 include:_spf.google.com ~all

Example SPF record for Microsoft 365:

Type: TXT
Host: @
Value: v=spf1 include:spf.protection.outlook.com ~all

If you use multiple providers (for example, Google Workspace and a dedicated SMTP), combine them into a single SPF record:

Type: TXT
Host: @
Value: v=spf1 include:_spf.google.com include:spf.protection.outlook.com ~all

Key rules for SPF:

  • You can only have one SPF record per domain. Multiple SPF records will cause validation failures.
  • Keep your DNS lookups under 10. Each include counts as a lookup. Exceeding 10 causes SPF to fail silently.
  • Use ~all (soft fail) rather than -all (hard fail) for cold outreach domains. Hard fail can cause issues with forwarded emails.

DKIM (DomainKeys Identified Mail)

DKIM adds a cryptographic signature to every email you send, proving it wasn't tampered with in transit. Your email provider generates the keys — you just add the DNS record they give you.

Google Workspace DKIM setup:

  1. Go to Google Admin Console > Apps > Google Workspace > Gmail > Authenticate Email
  2. Select your domain and click "Generate New Record"
  3. Choose 2048-bit key length
  4. Add the generated TXT record to your DNS:
Type: TXT
Host: google._domainkey
Value: v=DKIM1; k=rsa; p=MIIBIjANBg... (your unique key)
  1. Return to Google Admin and click "Start Authentication"

Microsoft 365 DKIM setup:

  1. Go to Microsoft 365 Defender > Email & Collaboration > Policies > DKIM
  2. Select your domain and enable DKIM signing
  3. Add the two CNAME records Microsoft provides:
Type: CNAME
Host: selector1._domainkey
Value: selector1-yourdomain-com._domainkey.yourtenant.onmicrosoft.com

Type: CNAME
Host: selector2._domainkey
Value: selector2-yourdomain-com._domainkey.yourtenant.onmicrosoft.com

DMARC (Domain-based Message Authentication, Reporting & Conformance)

DMARC ties SPF and DKIM together and tells receiving servers what to do when authentication fails. It also enables reporting so you can monitor authentication results.

Start with a monitoring-only DMARC policy:

Type: TXT
Host: _dmarc
Value: v=DMARC1; p=none; rua=mailto:dmarc-reports@yourdomain.com; pct=100

This tells receivers to send authentication reports to your email but not to take action on failures yet. After 2-4 weeks of monitoring, tighten the policy:

Move to quarantine:

v=DMARC1; p=quarantine; rua=mailto:dmarc-reports@yourdomain.com; pct=100

Eventually, move to reject (for maximum trust):

v=DMARC1; p=reject; rua=mailto:dmarc-reports@yourdomain.com; pct=100

For cold outreach domains, a quarantine policy is usually the right balance. A reject policy gives the highest trust signal but means any misconfiguration causes hard bounces.

Verifying Your DNS Setup

After configuring all three records, verify them before sending a single email:

  • MXToolbox — Check SPF, DKIM, and DMARC records individually
  • Google Admin Toolbox — Specifically useful for Google Workspace setups
  • Mail Tester (mail-tester.com) — Send a test email to their address and get a deliverability score out of 10. Aim for 9+.

Common DNS mistakes that kill deliverability:

  • Multiple SPF records on the same domain
  • DKIM key not activated after adding the DNS record
  • DMARC record with p=reject before SPF and DKIM are properly aligned
  • Using the wrong host/name format (some registrars auto-append the domain)

Warmup Protocol

Warmup is the process of gradually building sending reputation on a new inbox. Skip this or rush it, and your inbox placement will crater. Every new inbox — regardless of provider — starts with zero reputation.

Week 1: Foundation (5-10 emails/day)

Goal: Establish positive engagement signals with mailbox providers.

  • Send 5 emails on Day 1, increase by 1-2 per day
  • Target known contacts only — people who will open and reply
  • Also enroll the inbox in a warmup network (a pool of inboxes that automatically send, open, and reply to each other)
  • Send at varied times throughout the business day (not all at once)
  • Keep every email plain text, short, and conversational

Metrics to track:

  • Warmup open rate: should be 80%+ (warmup networks guarantee this)
  • Manual email reply rate: aim for 50%+ from known contacts
  • Spam folder placement: check by sending to your own test accounts on Gmail, Outlook, and Yahoo

Week 2: Expansion (10-20 emails/day)

Goal: Begin mixing in light outreach alongside warmup volume.

  • Continue warmup sends (maintain at least 10/day throughout)
  • Add 5-10 real outreach emails per day to highly targeted, likely-to-engage prospects
  • Use your best-performing subject lines and copy
  • Personalize every email — no batch-and-blast yet
  • Monitor inbox placement after every batch

Metrics to track:

  • Real outreach open rate: 50%+ indicates healthy inbox placement
  • Bounce rate: must stay under 3%. If it spikes, pause and clean your list.
  • Spam complaints: zero is the target. Even one complaint at this volume is a red flag.

Week 3-4: Ramp (20-40 emails/day)

Goal: Scale to working volume while maintaining sender reputation.

  • Increase real outreach by 5-10 emails/day each week
  • Maintain warmup sends at 10-15/day as a reputation floor
  • Begin A/B testing subject lines and opening lines
  • Rotate sending windows (morning one day, afternoon the next)
  • If spam rate exceeds 0.5% at any point, reduce volume by 50% and diagnose

Metrics to track:

  • Open rate: holding above 45% is the benchmark
  • Reply rate: 3%+ on cold outreach at this stage is solid
  • Inbox placement rate: test weekly with seed lists (send to test accounts across providers)

Week 5-8: Cruise (50-75 emails/day per inbox)

Goal: Reach sustainable sending velocity with stable metrics.

  • Settle into a consistent daily volume (50-75 per inbox is the safe ceiling for Google Workspace)
  • Reduce warmup sends to 5-10/day as maintenance
  • Implement full A/B testing on copy, CTAs, and send times
  • Begin tracking conversion metrics downstream (replies to meetings booked)

Metrics to track:

  • All previous metrics, plus:
  • Reply-to-sent ratio: maintain above 5%
  • Meeting book rate: track replies that convert to calls
  • Domain health: check blacklists weekly

The 14-Day Rule

If an inbox sits idle for 14+ days, its reputation decays. If you pause outreach for vacation, keep warmup sends active. Rebuilding a decayed inbox takes 2-3 weeks — essentially starting over.

Copy That Converts

The best deliverability infrastructure in the world is wasted if your emails are generic, boring, or salesy. Modern spam filters analyze content, not just authentication. And even emails that reach the inbox get deleted if the copy doesn't earn attention in the first 3 seconds.

Deliverability-Safe Copy Principles

  1. Short subject lines — 4-6 words, lowercase, no special characters, no emojis. Subject lines like "quick question" or "saw your recent post" consistently outperform clever marketing copy.
  2. Plain text only — No images, no HTML formatting, no logos, no tracking pixels if avoidable. Every visual element increases the probability of spam classification.
  3. One clear CTA — Ask a question, don't issue a command. "Would it make sense to chat?" outperforms "Book a call here."
  4. Personalized first line — Reference something specific to the prospect: a recent LinkedIn post, a company announcement, a mutual connection, or a specific challenge in their industry.
  5. Short paragraphs — 1-2 sentences each. Wall-of-text emails get deleted without being read.
  6. No spam trigger words — Avoid "free," "guarantee," "limited time," "act now," and other direct-response marketing language.

Email Template Frameworks

These frameworks are starting points. Every email should be customized for the recipient, but having a structural framework ensures consistency across your team.

Framework 1: The Observation-Insight-Ask

This template works best for prospects where you've identified a specific, observable challenge.

Subject: {{company_name}} + {{relevant_topic}}

Hi {{first_name}},

Noticed {{specific_observation_about_their_business}}.

We've been working with {{similar_role/company_type}} on
{{relevant_solution}} — one team went from {{before_metric}}
to {{after_metric}} in {{timeframe}}.

Worth a 15-minute chat to see if something similar
could work for {{company_name}}?

{{your_name}}

Why it works: The observation proves you did research. The social proof creates credibility without sounding like a pitch. The question-based CTA is low-pressure.

Framework 2: The Trigger Event

Use this when a prospect's company has had a recent event — new funding, leadership change, product launch, expansion, or hiring surge.

Subject: congrats on {{trigger_event}}

{{first_name}}, saw the news about {{specific_trigger_event}}.

When {{similar_companies}} hit this stage, they usually
run into {{common_challenge_related_to_event}}.

We built a system that handles {{specific_solution}} —
happy to share how it works if useful.

Either way, congrats on the momentum.

{{your_name}}

Why it works: Trigger events create natural openings. The email feels timely and relevant rather than random. The "either way" closing reduces pressure.

Framework 3: The Value-First Share

This template leads with a genuinely useful insight or resource, building goodwill before asking for anything.

Subject: {{relevant_topic}} data for {{company_name}}

Hi {{first_name}},

We just published data on {{relevant_industry_topic}} —
the key finding was {{one_specific_insight}}.

Given {{company_name}}'s focus on {{their_focus_area}},
thought this might be relevant to your planning.

Full breakdown is here: {{link_to_resource}}

Happy to walk through the implications for your
specific situation if helpful.

{{your_name}}

Why it works: Leading with value instead of an ask builds trust. The resource gives the prospect a reason to engage even if they're not ready to buy.

Framework 4: The Short and Direct

For senior executives who get 200+ emails a day, brevity is respect. This template gets to the point in under 40 words.

Subject: {{first_name}} — quick question

Hi {{first_name}},

We help {{company_type}} {{achieve_specific_outcome}}.

Would it make sense to show you how in 15 minutes
this week?

{{your_name}}

Why it works: No fluff, no long stories, no attachments. Senior buyers appreciate directness. The subject line with their name drives opens. The single question demands a yes or no — which drives replies.

Follow-Up Cadence

The initial email is only the beginning. Most replies come on follow-ups 2-4, not the first touch.

  • Follow-up 1 (3 business days later): Short bump. "Did this get buried? Wanted to make sure it landed."
  • Follow-up 2 (5 business days later): Add a new angle — a case study, a relevant data point, or a different pain point.
  • Follow-up 3 (7 business days later): The breakup email. "Seems like the timing isn't right. If becomes a priority, I'm here."

Total sequence length: 4 touches over 15 business days. Anything beyond that has diminishing returns and increases spam risk.

Monitoring Dashboard Setup

You can't fix what you can't see. A proper monitoring setup catches deliverability issues within hours instead of weeks.

Essential Monitoring Tools

Email sending platform analytics — Your outreach tool (whether it's a sequencing platform or custom-built system) should track opens, replies, bounces, and unsubscribes at the inbox level. If it only reports campaign-level averages, you'll miss inbox-specific problems.

Inbox placement testing — Services that maintain seed inboxes across Gmail, Outlook, Yahoo, and corporate servers. Send test emails before and during campaigns to verify where your emails actually land.

DNS monitoring — Set up alerts for SPF, DKIM, or DMARC failures. A single DNS change by your IT team or registrar can break authentication silently.

Blacklist monitoring — Check your sending IPs and domains against major blacklists (Spamhaus, Barracuda, SORBS) weekly. Early detection lets you file removal requests before the damage compounds.

DMARC reporting — Use a DMARC analytics service to parse the XML reports that mailbox providers send to your rua address. These reports tell you exactly which emails passed or failed authentication and from which IPs.

Weekly Monitoring Checklist

Every Monday, review:

  1. Per-inbox open rates for the previous week
  2. Per-inbox bounce rates (flag any inbox above 3%)
  3. Per-inbox spam complaint rate (flag any above 0.3%)
  4. Inbox placement test results
  5. Blacklist status for all sending domains and IPs
  6. DMARC report summary for authentication failures

Metrics Dashboard

Track these metrics at both the inbox level and campaign level:

MetricHealthyWarningCriticalAction
Open Rate> 50%30-50%< 30%Check inbox placement, test subject lines
Reply Rate> 5%2-5%< 2%Revise copy, check targeting
Bounce Rate< 2%2-5%> 5%Clean list, verify emails before sending
Spam Complaint Rate< 0.1%0.1-0.3%> 0.3%Pause inbox, review content and targeting
Unsubscribe Rate< 1%1-3%> 3%Review list quality and message relevance
Inbox Placement> 85%70-85%< 70%Audit DNS, reduce volume, check content
Warmup Score> 9070-90< 70Increase warmup volume, check for blacklists

Troubleshooting Common Deliverability Issues

Problem: Sudden Drop in Open Rates

Likely causes:

  • Inbox got blacklisted (check Spamhaus, Barracuda, SORBS)
  • SPF/DKIM/DMARC misconfiguration (run a DNS check)
  • Sending volume spiked too fast (review daily send counts)
  • List quality degraded (high bounce rate contaminates sender reputation)

Fix: Pause all outreach from the affected inbox. Run DNS verification. Check blacklists. If blacklisted, submit removal requests and pause for 7 days. When you resume, start at 25% of your previous volume and ramp back up over 2 weeks.

Problem: High Bounce Rate

Likely causes:

  • Email list contains invalid addresses (purchased list, outdated data)
  • Domain typos in your contact database
  • Catch-all domains no longer accepting all mail

Fix: Verify every email address through a verification service before adding it to any sequence. Remove any address that returns a "risky" or "unknown" result. Aim for 97%+ verified-valid rate on every list before sending.

Problem: Landing in Promotions Tab (Gmail)

Likely causes:

  • HTML formatting, images, or tracking links in your email
  • Email content resembles marketing material (multiple links, formatted text)
  • Sending from a domain with marketing email history

Fix: Strip all HTML formatting. Remove images and minimize links (one max). Write emails that read like genuine one-to-one correspondence. If the domain is tainted, rotate to a fresh domain.

Problem: Emails Going to Spam

Likely causes:

  • Failed authentication (SPF, DKIM, or DMARC not aligned)
  • Content contains spam trigger words or patterns
  • Sending IP or domain is on a blacklist
  • Too many recipients are marking your emails as spam

Fix: This requires a systematic diagnosis. Start with authentication (run mail-tester.com). Then check blacklists. Then review content. If the domain has accumulated spam complaints, it may be more efficient to retire it and start with a fresh domain than to rehabilitate it.

Problem: Low Reply Rate Despite Good Open Rates

Likely causes:

  • Copy isn't compelling or relevant to the recipient
  • CTA is unclear or too aggressive
  • Targeting is off (reaching the wrong people)
  • No follow-up sequence (most replies come on touches 2-4)

Fix: This is a copy and targeting problem, not a deliverability problem. A/B test your opening lines, value propositions, and CTAs. Review your ICP criteria. Make sure your follow-up sequence is active and properly timed.

Problem: Account Suspended by Email Provider

Likely causes:

  • Exceeded Google Workspace or Microsoft 365 sending limits
  • High spam complaint rate triggered automated suspension
  • Terms of service violation detected

Fix: Contact the provider's support team. For Google Workspace, the daily limit is approximately 2,000 emails per user (but cold outreach should stay under 100). For Microsoft 365, the limit is 10,000 per day but practically lower for cold email. When the account is restored, reduce volume significantly and rebuild gradually.

Scaling Your Cold Email Operation

Once your infrastructure is stable and metrics are healthy, scaling follows a predictable pattern:

  1. Add inboxes, not volume per inbox. Never exceed 75 emails/day per inbox on Google Workspace. Scale by adding inboxes across domains.
  2. Stagger new inbox launches. Don't start warming 10 inboxes simultaneously. Launch 2-3 per week so you can monitor each one individually.
  3. Maintain list hygiene ruthlessly. Every batch of contacts should be verified before import. Remove anyone who hasn't opened in 3+ touches.
  4. Rotate domains on a cycle. After 3-4 months of heavy sending, rest a domain for 2-4 weeks while others carry the load. This prevents reputation fatigue.
  5. Separate your sequences by intent. High-intent prospects (visited your site, engaged with content) should get a different sequence than cold prospects. Mixing them muddies your metrics.

Putting It All Together

Deliverability is not a one-time setup — it's an ongoing discipline. The teams that treat it as infrastructure (like their CRM or website) consistently outperform those that treat it as an afterthought.

Here's the summary of what separates a high-performing cold email operation from one that's burning money:

  • Dedicated domains with proper DNS authentication (SPF, DKIM, DMARC) — the foundation
  • Patient warmup over 4-6 weeks, never rushing the ramp — the discipline
  • Clean, verified lists with less than 3% bounce rate — the fuel
  • Plain-text, personalized copy with a single soft CTA — the craft
  • Weekly monitoring of per-inbox metrics with clear thresholds — the feedback loop
  • Fast response to issues with documented troubleshooting playbooks — the resilience

Deliverability is a marathon, not a sprint. Build the infrastructure right, and you'll have a reliable channel that scales predictably and compounds over time.

For a done-for-you approach, explore our email and LinkedIn outreach systems or see how we automate the warmup process with our email warmup system.

Related Content