Reputation: 445
I was just curious about why only a few special character are not allowed in email address. Except a few special character like ".", "_" etc most of special character characters bot allowed. is this a technology constraint or just a convention without any reason ?
Upvotes: 1
Views: 608
Reputation: 887443
It's a blatant falsity that is unjustly imposed by overzealous email regexps.
Almost all characters can be used in email addresses.
"abc def+ghi/jkl@mno*pqr"@localhost
is a valid email address.
Even without quoting, !#$%&'*+-/=?^_`{|}~@hi
is valid.
Upvotes: 4