Email Validator

Check whether an email address is syntactically valid (RFC 5322 friendly), with breakdown of local part, domain, and common pitfalls.

Or paste a list (one per line) below to bulk-check.
Enter input above to see the result.

What is this for?

Most "email validators" are a one-line regex that approves not@an.email and rejects edge@case.io. This tool runs the structural checks RFC 5321 / 5322 actually require — local part charset, dot rules, label lengths, TLD shape, hard length limits — plus a disposable-domain hint. It tells you whether an address is well-formed; it doesn't tell you whether the mailbox exists (that needs a server-side MX/SMTP probe).

When to use it

Common gotchas