email-exist

1.1.7 • Public • Published

Using and information

npm install email-exist and enjoy !)

Example

var verifier = require('email-exist');
verifier.verify( 'test@test.com', function( err, info ){
  if( err ) {
    console.log(err);
  }else{
    console.log( "Success: " + info.success );
    console.log( "Info: " + info.info );
    console.log( "Response from smtp: " + info.response );
  }
});

return

{
  success: boolean
  info: string
  addr: the address being verified
  response: string
}

it is fork fom email-verify package. I add tries to connect other ports and smtp response log

Package Sidebar

Install

npm i email-exist

Weekly Downloads

10

Version

1.1.7

License

MIT

Last publish

Collaborators

  • alexandr.cctv