Email Validator
A simple module to validate an email address using SMTP protocol.
Getting Started
Install like so
npm i add deep-email-verifier --save
or with yarn
yarn add deep-email-verifier
Use like so
javascript
const validateEmail = require("deep-email-verifier")
const main = async () => {
let emailCheck = await validateEmail("abc@companydomain.com");
}
// Response Success
// { status: 1, email_status: "Catch All" }
// Response Error
// { status: 0, message: "Error Message Text" }
/*
Second parameter is to set Sender
Default sender : info@gmail.com
Sender email address recommended
EX: await validateEmail("abc@companydomain.com","no_reply@companydomain.com");
*/