SMTP verification explained: what it is and why it matters
Most validators stop at syntax and MX checks. Real-time SMTP probing goes further — knocking on the receiving server's door without sending a message. Here's exactly what happens in that handshake.
When someone asks whether an email address is 'valid,' they usually mean one of two things: does it look right, and does it actually work? Syntax checks and MX lookups answer the first question. SMTP verification is the only way to answer the second without sending a real message.
What happens during an SMTP probe
SMTP (Simple Mail Transfer Protocol) is the protocol mail servers use to exchange messages. An SMTP probe initiates a real connection to the recipient's mail server and simulates the beginning of a message delivery — without ever sending the message body.
The exchange goes like this: our prober connects to the mail server on port 25 or 587, announces itself with EHLO, identifies a sender address with MAIL FROM, and then issues a RCPT TO command with the address being validated. The server responds with a 250 (success) or 550 (user unknown). We then immediately issue a QUIT command. No message is ever sent.
Why servers sometimes can't be probed
Not every server cooperates. Some mail servers always return 250 regardless of whether the mailbox exists — these are catch-all domains. Others implement greylisting, which temporarily rejects unfamiliar senders with a 451 (try again later). Some corporate servers block connections from cloud IP ranges entirely. In these cases, SMTP verification returns UNKNOWN — not INVALID.
UNKNOWN doesn't mean the address is bad. It means we couldn't confirm it either way. Treat it differently from INVALID in your workflows.
The MX check comes first
Before any SMTP probe, we check for MX records. If the domain has no MX record, it cannot receive email — full stop. We return INVALID immediately without wasting time on a probe. This short-circuit catches a significant percentage of invalid addresses before any network connection is made.
Privacy and deliverability
A common concern is whether SMTP probes affect your sending reputation. They don't — we use dedicated prober infrastructure with separate IP ranges that are never used for actual email delivery. Our probers are also rate-limited per domain to avoid triggering spam filters on the receiving server.
The bottom line: SMTP verification is the most reliable method available for confirming that a mailbox exists and can receive mail. Syntax checks and DNS lookups are necessary but not sufficient.