Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

email-domain-check

autokent1.4kMIT1.1.4

Checks existence of E-Mail DNS MX records.

email, existence, validation, validator, domain, mx, mail-exchange, mail, smtp, verify, validate, validate-email-hostname, mailcheck, email-checker, is-open-mail, validate-email-hostname, email-deep-validator, enhanced-email-deep-validator, mail-confirm, legit, email-mx-validator, email-full-validate

readme

email-domain-check

Checks existence of E-Mail DNS MX records.

logo

version downloads node status

Installation

npm install email-domain-check

Usage

const edc = require('email-domain-check');

edc("tom@hotmail.com").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.