Verymail, email address validation REST API engine
a thorough aggregated email verification api and mailing list authenticator service.
const verymail = require("verymail");
verymail("[email protected]")
.then(result => {
result.isValid ?
log("Valid!") :
log("Invalid!");
log(JSON.stringify(result));
})
.catch(err => console.log(err));