Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/izeau/verify-email
Verify that an email address actually exist using SMTP.
https://github.com/izeau/verify-email
Last synced: 4 months ago
JSON representation
Verify that an email address actually exist using SMTP.
- Host: GitHub
- URL: https://github.com/izeau/verify-email
- Owner: izeau
- Created: 2016-09-08T10:29:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-08T10:30:32.000Z (over 8 years ago)
- Last Synced: 2024-08-06T16:13:37.868Z (4 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 16
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# verify-email
Verify that an email address actually exist using SMTP.
## Purpose
An email address like `[email protected]` is valid but doesn’t actually exist. This tool is used to check against the SMTP server if an address is not only valid, but also exists. It doesn’t use any external dependency.
## Usage
```
npm i -g verify-email
verify-email [email protected]
```The exit code will be `0` if the email exists, and `1` if an error happens.
## TODO
* Unit tests
* Fast invalid email detection using custom rules for major email providers (Gmail, Yahoo, etc.)
* Library