email-domain-check
v1.1.4
Published
Checks existence of E-Mail DNS MX records.
Downloads
1,795
Maintainers
Readme
email-domain-check
Checks existence of E-Mail DNS MX records.
Installation
npm install email-domain-check
Usage
const edc = require('email-domain-check');
edc("[email protected]").then(function(result){
console.log(result);//true
})
edc("tom@hotmaililililcom").then(function(result){
console.log(result);//false
})
Test
mocha
or npm test
check test folder and QUICKSTART.js for extra usage.