deep-email-verifier
v1.0.2
Published
This package is to verify email address by using SMTP protocol
Downloads
30
Maintainers
Readme
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("[email protected]");
}
// Response Success
// { status: 1, email_status: "Catch All" }
// Response Error
// { status: 0, message: "Error Message Text" }
/*
Second parameter is to set Sender
Default sender : [email protected]
Sender email address recommended
EX: await validateEmail("[email protected]","[email protected]");
*/