🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

email-verifier-node

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

email-verifier-node

This package verifies the email exists or not. It also exposes the validate format api to check the format for the email.

0.0.2
latest
Source
npm
Version published
Weekly downloads
6
20%
Maintainers
1
Weekly downloads
 
Created
Source

Email verifier

This package verifies the email exists or not. It also exposes the validate format api to check the format for the email.

Installation

Use the package manager npm to install email-verifier-node.

    npm install email-verifier-node

Usage

It exposes two apis:-

  • Validate format
  • Verify Email

Validate Format

This Api checks the format for the email.

    const email_verifier = require('email-verifier-node');
    console.log(email_verifier.validate_email('random_email@gmail.com'));
    // true

Verify Email

This Api is promise based so to obtain result you have to use then/catch or async/await. Internally, this api uses validate format api.

    const email_verifier = require('email-verifier-node');
    email_verifier.verify_email('jain@gmail.com')
    .then( result => {
        console.log(result)
        /* { 
            "format":true,
            "is_verified":false,
            "accept_all":false,
            "message":" The email account that you tried to reach does not exist.",
            "errors":""
        } */
    })

Result format is like:-

  • format : Returns true if email format is valid otherwise false.
  • is_verified : Returns true if email is verified and able to receive emails otherwise false.
  • accept_all : Returns true if all the mx_records for the domain able to receive emails otherwise false.
  • message : Returns string stating the resultant message for the call.
  • errors : Contains the stack trace of errors in string while querying for email verification.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Keywords

email-validator

FAQs

Package last updated on 11 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts