A list cleaning protocol before high-volume bulk campaigns is the single highest-ROI deliverability action available to most senders. Complaint rates on unclean lists compound over time: a 2% hard bounce rate is annoying; that same 2% across a 2M-message campaign adds 40,000 permanent failures to your MTA logs and triggers ISP throttling that affects every subsequent send for weeks. List cleaning is not a one-time exercise — it is a pre-campaign infrastructure requirement at any volume above 100,000 messages.
List Health Diagnosis — Before You Clean
Before running bulk verification, diagnose your list's current health to understand what type of cleaning problem you have. The diagnosis determines whether you need verification, re-engagement, or both — and prioritises which to run first.
| Symptom | Diagnosis | Primary action |
|---|---|---|
| Hard bounce rate > 2% on first send | Invalid addresses — list not verified or stale | Email verification service (NeverBounce/ZeroBounce) |
| Complaint rate > 0.10% (Gmail/Yahoo) | Unengaged contacts receiving unwanted mail | Engagement segmentation + sunset suppression |
| Inbox placement dropping gradually | Growing unengaged segment — reputation erosion | Re-engagement sequence + engagement segmentation |
| Sudden delivery drop at specific ISP | Spam trap hit or IP-specific block | Verification + ISP-specific list audit |
| High bounce rate on specific domains | Stale addresses from a specific acquisition source | Audit that source segment specifically |
Email Verification — What Services Check and What They Miss
Email verification services perform several checks in sequence. Understanding what each check does — and its limitations — prevents over-reliance on verification as a complete solution.
Email Verification Check Types — Detection Rate by Address Category
Catch-all domains are the most challenging verification category. A catch-all domain accepts any email at the SMTP level — nobody@company.com returns 250 OK even if it does not exist. Verification services flag these addresses as "unknown" or "catch-all" because they cannot determine validity via SMTP. For large lists with many B2B addresses, catch-all addresses can represent 20–30% of the total. The safest approach is to treat catch-all addresses as medium-risk: do not suppress them entirely, but do not include them in the initial bulk send. Warm up the catch-all segment separately and monitor bounce rates closely on the first send.
Engagement Segmentation for Bulk Sends
Verification addresses technical invalidity. Engagement segmentation addresses the complaint and deliverability risk from valid but uninterested addresses. Both are required for high-volume bulk campaigns — a verified but unengaged list still generates complaint rates that damage inbox placement.
-- TIER 1: Send at full volume (most engaged)
SELECT email FROM contacts
WHERE last_open_date >= CURRENT_DATE - INTERVAL '30 days'
OR last_click_date >= CURRENT_DATE - INTERVAL '60 days'
AND hard_bounce = FALSE
AND unsubscribed = FALSE
AND global_suppression = FALSE;
-- TIER 2: Send at 50% sample (moderately engaged)
SELECT email FROM contacts
WHERE last_open_date BETWEEN
(CURRENT_DATE - INTERVAL '90 days') AND (CURRENT_DATE - INTERVAL '31 days')
AND hard_bounce = FALSE
AND unsubscribed = FALSE
ORDER BY RANDOM() LIMIT (count(*) * 0.5); -- 50% of this segment
-- TIER 3: Re-engagement sequence only (do NOT bulk send)
SELECT email FROM contacts
WHERE last_open_date BETWEEN
(CURRENT_DATE - INTERVAL '180 days') AND (CURRENT_DATE - INTERVAL '91 days')
AND hard_bounce = FALSE;
-- TIER 4: Suppress entirely
-- No open in 180+ days → global suppression
▶ Pre-campaign list cleaning protocol for 500K+ sends
Situation: Annual Black Friday email to entire list of 1.4M. Previous year: 4.7% hard bounce rate, Microsoft blocked the sending IP for 11 days during the peak trading period. EUR 180K in estimated lost email-attributed revenue.
Protocol implemented: 6 weeks before Black Friday, ran full list through NeverBounce — removed 210K invalid addresses. Applied engagement segmentation: 680K Tier 1 (30d openers), 320K Tier 2 (90d openers), 190K to re-engagement sequence. Remaining 190K suppressed.
Outcome: Hard bounce rate: 0.3%. Microsoft delivery: uninterrupted. Gmail inbox placement: 94%. Campaign revenue increased 31% versus prior year on a smaller but cleaner list. No ISP blocks during peak trading.

