Email Address Validator
Validate an email address format and check the domain's MX records.
Email Address Validator checks whether an address is in a valid formatand whether its domain can actually receive mail by looking up the domain's MX (mail exchanger) records — all in one step. It helps you catch obvious typos or non-existent domains in sign-up forms, newsletter opt-ins, and contact forms before they enter your list.
Validation runs in two stages. First it checks the local@domain structure and allowed characters with a robust rule set; if the syntax passes, it extracts the domain and queries public DNS for MX records. When no MX exists, it falls back to the A record (implicit MX) to estimate whether the domain can receive mail. For deeper domain diagnostics, view all records with DNS Record Lookup.
What it checks — and what it can't
This tool verifies two things: (1) whether the address is in an RFC-compliant format, and (2) whether the domain has a mail-receiving record (MX, or A as a fallback). When both pass, the overall verdict reads "likely deliverable." But that is a likelihood, not a guarantee.
- Syntax check: the position of the @, local and domain length, allowed characters, and dot placement.
- MX presence: whether the domain is configured to receive mail (delegated to a mail server).
- A fallback: if there is no MX but an A record exists, it is treated as an implicit MX and counted as deliverable.
The limits of email validation
Even when both the syntax and MX are fine, this tool cannot tell whether the actual mailbox exists. Only the mail server knows whether a specific username is registered.
- SMTP pings are unreliable: probing a mailbox with RCPT TO is often wrong because of catch-all addresses, greylisting, and deliberately misleading responses. Excessive SMTP attempts can also harm your sending IP's reputation.
- Disposable and role addresses: a valid format and MX can still be a throwaway domain or a role address like
info@oradmin@. - Double opt-in is the real check: sending a confirmation email and having the user click a link is effectively the only reliable way to verify true receipt and ownership.