Bad destination mailbox address — mailbox does not exist
Production Risk
Low for individual messages; High for sender reputation if not handled (hard bounces spike).
The destination mailbox does not exist on the receiving mail system. This is the most common cause of email bounces (hard bounce).
- 1The recipient's email address was mistyped.
- 2The recipient's account has been deleted.
- 3The domain exists but the specific mailbox does not.
Sending mail to a non-existent address. Common in bulk mailers with stale lists.
RCPT TO:<nonexistent@example.com> # Server returns: 550 5.1.1 The email account that you tried to reach does not exist
expected output
550 5.1.1 ...
Fix
Remove invalid address from mailing list
WHEN Received as a bounce in bulk sending
# Mark address as hard-bounced in your database UPDATE subscribers SET status = 'hard_bounce' WHERE email = 'nonexistent@example.com'; # Never retry hard bounces
Why this works
Hard bounces (5.x.x) should never be retried — remove them immediately from your list.
✕ Retry a 5.1.1 bounce
5.x.x codes are permanent failures. Retrying will damage your sender reputation.
RFC 3463 — Enhanced Mail System Status Codes
Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev