Socket
Socket
Sign inDemoInstall

email-exists

Package Overview
Dependencies
1
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    email-exists

Check whether an email address exists.


Version published
Weekly downloads
223
decreased by-33.23%
Maintainers
1
Install size
9.81 kB
Created
Weekly downloads
 

Readme

Source

email-exists

Check whether an email address exists.

This module checks whether an email address exists by connecting to the mail server and pretending to send an email (but not actually sending it, of course).

For checking whether an email is syntactically valid, please use hapijs/isemail.

Installation

npm install email-exists

Quickstart

const emailExists = require('email-exists')

emailExists({ sender: 'darthvader@gmail.com',
              recipient: 'lukeskywalker@gmail.com' })
    .then(console.log)
    // --> MAY_EXIST

API

emailExists(options)

  • requires an options <Object> with the following properties:
    • sender <String>: required; the sender's email address for the MAIL FROM command
    • recipient <String>: required; the recipient's email address for the RCPT TO command
    • timeout <Number>: default = 3000; the timeout in milliseconds for the Telnet connection
    • debug <Boolean>: default = false; whether to print debug messages to the console
  • returns a <Promise> which:
    • resolves with one of the following <String> objects:
      • INVALID_SYNTAX: Represents a 553 indicating that the mailbox name is not allowed due to invalid syntax
      • NOT_FOUND: Represents a 550 indicating that the mailbox is unavailable, cannot be found, or may not be accessed
      • MAY_EXIST: To prevent clients from discovering all available addresses, servers may respond with false positives; therefore, this result is deliberately named "may exist", indicating that it is highly likely that the address actually exists, but that it cannot be confirmed (without actually sending a confirmation mail)
    • rejects with an <Error> object if either the DNS lookup or the Telnet connection fails

Maintainers

License

MIT

Keywords

FAQs

Last updated on 04 Sep 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