Socket
Socket
Sign inDemoInstall

email-existence

Package Overview
Dependencies
2
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    email-existence

Checks existence of email addresses


Version published
Weekly downloads
2.1K
increased by4.37%
Maintainers
1
Install size
1.86 MB
Created
Weekly downloads
 

Readme

Source

email-existence

Checks existence of email addresses

Installation

To install via npm:

npm install email-existence

Requirements

A valid email address to check the existence of. Use node-validator to check validity.

Usage

  • Check existence:

    	emailExistence.check('email@domain.com', function(error, response){
    		console.log('res: '+response);
    	});
    
  • The check function will return a boolean in response callback function to indicate existence of an email address. Existence is determined by telnetting to the MX server of the email domain and attempting to send an email to the supplied address. MX servers return 250 if the email address exists and 550 if it does not. This test email is not ever sent.

Keywords

FAQs

Last updated on 25 Feb 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc