Tested tool guide
Tested browser tools
Checked August 16, 2026
What Email Address Validator does, with a checked example
An email address is valid only if it matches the local-part@domain shape in RFC 5322, and most failures hide in subtleties: consecutive dots, a missing dot in the domain, or an at-sign in the wrong place. This tool parses the address you paste, reports which rule fails, and adds an MX record note - a domain with no mail server bounces a delivery no matter how clean the syntax. The surprise most users hit runs the other way: plus-tagged addresses such as jane+work@example.com and quoted local parts are legal under RFC 5322 even though many registration forms reject them.
Worked example
A concrete input and expected output from the current implementation.
Input
jane.doe+newsletter@example.com
->
Expected output
Valid. The local part 'jane.doe+newsletter' satisfies the dot-atom rule - the plus sign is an allowed character and each dot separates two non-dot characters - and 'example.com' is a well-formed domain. An MX record check on example.com is suggested before relying on delivery, since valid syntax does not confirm the mailbox exists.
Every element here is legal under RFC 5322, which surprises users whose forms refuse plus-tagged addresses. 'jane.doe+newsletter' parses as a dot-separated run of permitted characters, so the address passes even though many signup forms would reject it.