1.1.4 • Published 6 years ago

email-domain-check v1.1.4

Weekly downloads
799
License
MIT
Repository
gitlab
Last release
6 years ago

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.