node-email-domain-check
v1.0.0
Published
Check that email addresses are really able to accept emails by pinging the DNS and checking for active MX records.
Downloads
2
Readme
Installation
$ npm install git+https://github.com/ShivamJoker/node-email-domain-check.git
Usage
import { isEmailDomainValid } from "../src";
isEmailDomainValid("[email protected]")
.then(() => console.log("MX record exist"))
.catch((err) => console.log("No record found", err));