Socket
Socket
Sign inDemoInstall

emailvalidation

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emailvalidation

A module for validating emails using the emailvalidation.co API.


Version published
Weekly downloads
2
decreased by-88.89%
Maintainers
1
Weekly downloads
 
Created
Source

emailvalidation

An email validation module using the emailvalidator.co API. This does more than just check syntax, this module actually validates whether the mailbox is active.

Emailvalidator.co has 4-levels of verification:

  • Level 1: The API checks for syntax issues and whether the domain belongs to any disposable email domain such as yopmail, mailinator, etc.

  • Level 2: The API checks for all the above plus if the domain name is valid, and whether the domain has hosted email servers to accept emails.

  • Level 3: The API checks whether the mailbox actually exists along with the above.

  • Level 4: The API checks whether the email server has a catch-all account.

You can signup for an account at emailvalidator.co

Installation

npm install emailvalidation --save

Usage

var validator = new Validator('your-api-key');

validator.validate(email, function(err, response)) {
  console.log(response.IsValid); //Will return true or false

});```

Keywords

FAQs

Package last updated on 23 Apr 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc