We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since an email can contain multiple @, mapDomain function must find the last index of @ to use it as the encoded chunk for the domain.
@
mapDomain
For example, this email is valid "a@b"@c: in that case the mail address is "a@b" and the domain is c.
"a@b"@c
"a@b"
c
Another more complex valid email: "very.(),:;<>[]\".VERY.\"@very@\\ \"very\".unusual"@mydomain.com
"very.(),:;<>[]\".VERY.\"@very@\\ \"very\".unusual"@mydomain.com
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since an email can contain multiple
@
,mapDomain
function must find the last index of@
to use it as the encoded chunk for the domain.For example, this email is valid
"a@b"@c
: in that case the mail address is"a@b"
and the domain isc
.Another more complex valid email:
"very.(),:;<>[]\".VERY.\"@very@\\ \"very\".unusual"@mydomain.com
The text was updated successfully, but these errors were encountered: