resolve-email
v3.0.4
Published
Resolve the domain of an email address to see if it even has a chance of delivering
Downloads
611
Readme
resolve-email
Resolve the domain of a syntactically valid email address to see if there is even a chance of deliverability. Also checks against a large list of disposable email and other junk/unwated address domains and rejects those.
npm install resolve-email
Usage
import { resolveEmail } from 'resolve-email'
// Validate the email address before passing it in here:
const results = await resolveEmail('[email protected]')
console.log(results)
// results.emailResolves true/false
// results.mxRecords [array of mx records and priorities]
// results.error any errors that may have occurred.
See also
This module was adapted from nodemailer/nodemailer-direct-transport
The disposable email domain list is generated from the following data sources:
- https://github.com/romainsimon/emailvalid
- https://github.com/disposable-email-domains/disposable-email-domains
License
MIT