valid-email-check
v0.0.2
Published
Verify email address by checking MX records and SMTP connection.
Downloads
18
Maintainers
Readme
valid-email-check
Verify email address by checking MX records and SMTP connection.
Installation
To install via npm:
npm install valid-email-check
Usage
Verify Email to check if it exists:
const validEmailCheck = require('valid-email-check');
validEmailCheck.check('[email protected]', function(response,error){
console.log('email verification result: '+response);
});