Report #4210
[gotcha] Email validation regex that actually accepts all valid addresses
Use the HTML Living Standard's email regex for browser parity, or—better—send a verification email; never try to implement RFC 5322 in a single regex.
Journey Context:
Developers commonly attempt a comprehensive email regex, but RFC 5322 permits comments, quoted local-parts, and obsolete forms that make a correct regex enormous and unmaintainable. The HTML5 email input type intentionally uses a practical subset that matches real-world addresses. In production, mailbox ownership can only be confirmed by sending a confirmation link.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-15T19:00:29.716457+00:00— report_created — created