Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duhow/mail-checker
Small API service to check the email provided, return score and determine if it's valid or not.
https://github.com/duhow/mail-checker
dns email-checker email-validation email-validator mail-check mail-checker
Last synced: 3 days ago
JSON representation
Small API service to check the email provided, return score and determine if it's valid or not.
- Host: GitHub
- URL: https://github.com/duhow/mail-checker
- Owner: duhow
- License: mit
- Created: 2024-10-23T13:48:51.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T20:20:40.000Z (2 months ago)
- Last Synced: 2024-10-25T14:57:22.276Z (2 months ago)
- Topics: dns, email-checker, email-validation, email-validator, mail-check, mail-checker
- Language: Python
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📨 Mail Checker
A small Flask application to check the email provided, return score and determine if it's valid or not.
This app can detect:
* common pattern typos and make domain suggestions (eg. `gemail.com`)
* some **Disposable Email Addresses** (DEA) - aka temporal emails
* domains used on public email services
* domains that do not exist (checks DNS records) or cannot receive emails### Usage
Call endpoint `GET /[email protected]` or `POST /check` with JSON `{"email": "[email protected]"}`.
Alternatively, execute `app.py [email protected]` to check one single address.
```sh
curl -H "Content-Type: application/json" localhost:5000/check --data '{"email": "[email protected]"}'
``````json
{
"disposable": true,
"email": "[email protected]",
"reasons": [
"Suspicious Tempmail"
],
"score": 0,
"valid": false
}
```