You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Afaik SMTPUTF8 allows emojis in email addresses, but EmailAddress::FromStr gives InvalidCharacter: 👋@💌.kz I❤️CHOCOLATE@example.com
Minimal Reproducible Examples (MRE)
use email_address::EmailAddress;use std::str::FromStr;fnmain(){let x = EmailAddress::from_str("👋@💌.kz");let y = EmailAddress::from_str("I❤️CHOCOLATE@example.com");dbg!(x);dbg!(y);}
The text was updated successfully, but these errors were encountered:
Describe the bug
Afaik SMTPUTF8 allows emojis in email addresses, but
EmailAddress::FromStr
givesInvalidCharacter
:👋@💌.kz
I❤️CHOCOLATE@example.com
Minimal Reproducible Examples (MRE)
The text was updated successfully, but these errors were encountered: