giga-email-exists
v0.2.1
Published
Check whether an email address exists.
Downloads
9
Maintainers
Readme
email-exists
FYI: THIS IS A FORK FROM THE ORIGINAL 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 giga-email-exists
Quickstart
const emailExists = require('email-exists')
emailExists({ sender: '[email protected]',
recipient: '[email protected]' })
.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 theMAIL FROM
command - recipient
<String>
: required; the recipient's email address for theRCPT 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
- sender
- returns a
<Promise>
which:- resolves with one of the following
<String>
objects:INVALID_SYNTAX
: Represents a553
indicating that the mailbox name is not allowed due to invalid syntaxNOT_FOUND
: Represents a550
indicating that the mailbox is unavailable, cannot be found, or may not be accessedMAY_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
- resolves with one of the following
Maintainers
License
MIT