Bounce Detection
Also known as: Bounce Handling, Bounce Processing, NDR Detection
Automated identification of email bounces (delivery failures) to trigger suppression, sequence exit, and list hygiene actions.
Definition
Bounce detection is the capability of an email or sequence platform to automatically identify when a sent email fails to deliver — either permanently (hard bounce: invalid address, domain not found) or temporarily (soft bounce: mailbox full, server unavailable). Bounce detection parses incoming bounce notifications from receiving mail servers and classifies the failure reason via SMTP response codes.
Detected bounces typically trigger automatic actions: hard bounces add the address to the suppression list immediately, soft bounces are retried for 24-72 hours before reclassification, and persistent bounces (a soft bounce that keeps failing) eventually get treated as hard bounces. The platform also exits bouncing contacts from active sequences to prevent further wasted sends.
Modern bounce detection distinguishes between many bounce types: invalid address (550 5.1.1), domain not found (550 5.4.0), mailbox full (552 5.2.2), blocked by recipient (550 5.7.1), greylisted (450 4.2.1), reputation block (554 5.7.1), and dozens more. Each requires different handling.
Why It Matters
Bounce detection is the first line of defense for sender reputation. Continuing to send to known-bad addresses is the fastest way to damage your domain's standing with mailbox providers. Automatic bounce detection + suppression keeps your list clean and your reputation intact.
The biggest mistake is treating all bounces identically. Hard bounces should suppress immediately. Soft bounces should retry but eventually escalate to suppression if persistent. Reputation-block bounces (where the recipient blocked YOU specifically) require investigation, not blind suppression. Different bounce types need different responses.
Examples in Practice
A SaaS company's outbound sequence sends 5,000 first-touch emails. Bounce detection reports 60 hard bounces (1.2%) and 80 soft bounces (1.6%) within 24 hours. Hard bounces auto-suppress; soft bounces are retried twice over 48 hours, after which 50 of the 80 deliver and 30 are reclassified as hard. Final clean list: 4,910.
An ecommerce brand's transactional email volume suddenly shows a spike in 'recipient blocked you' bounces from one specific domain. Investigation reveals their domain was flagged by that recipient's spam filter after a phishing campaign spoofed their address. They submit removal requests and the bounces resolve within a week.
A marketing-ops team builds custom logic for bounce handling: hard bounces → suppress immediately. Soft bounces → retry 3 times over 48 hours, then suppress. Reputation blocks → flag for manual review and don't suppress until investigated. The nuanced approach keeps legitimate recoverable contacts active while protecting reputation.