1.0.0 • Published 10 years ago

emailbeachhead v1.0.0

Weekly downloads
3
License
no
Repository
-
Last release
10 years ago

emailBeachHead

Checks existence of email addresses

Installation

To install via npm:

npm install emailBeachHead

Requirements

Usage

  • Check existence:

    	```
    		emailBeachHead.check('email@domain.com', function(err,res){
    			console.log('res: '+res);
    		});
    	```
  • The check function will return a boolean 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.