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 rely on a single regex pattern that either over-accepts (flagging typos as valid) or over-rejects (blocking legitimate edge cases). This tool applies the actual structural rules from RFC 5321 and RFC 5322: character set restrictions on the local part, dot placement rules, label length caps, TLD format constraints, and hard length limits across the entire address. It also flags disposable-domain providers so you can warn users upfront. The result: you get a pass/fail verdict and a detailed breakdown of why an address succeeds or fails — without needing to hit a paid validation API or wait for SMTP probes.

When to use it

How it works

Common gotchas