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
Valid emails marked as invalid some time e.g on [email protected] I am getting
[email protected]
"result": { "valid": false, "validators": { "regex": { "valid": true }, "typo": { "valid": false, "reason": "Likely typo, suggested email: [email protected]" }, "disposable": { "valid": false }, "mx": { "valid": false }, "smtp": { "valid": false } }, "reason": "typo" }
The text was updated successfully, but these errors were encountered:
you can suppress this issue by adding the top level domain co to the additionalTopLevelDomains like below.
co
additionalTopLevelDomains
await validate({ email: '[email protected]', sender: '[email protected]', validateRegex: true, validateMx: true, validateTypo: true, validateDisposable: true, validateSMTP: true, additionalTopLevelDomains: [ 'co' ] })
it was hinted in the README.
Sorry, something went wrong.
No branches or pull requests
Valid emails marked as invalid some time e.g on
[email protected]
I am getting
The text was updated successfully, but these errors were encountered: