Licence is AGPL-3.0 in accordance with https://github.com/reacherhq/check-if-email-exists
This CLI will either accept string
input of email addresses or a file(s)
input(s) or a directory
containing .csv
files, omitting duplicates and then it will determine if the email is valid based on logic inside email check source.
It will write to output with duplicates, valid and invalid emails amongst other useful information.
A run of 6000 emails across 4 csv files peaked ~190MB RAM, allowing 200 concurrent tasks across all threads.
Note: careful with --concurrency
, on a linux machine running systemd-resolved caused DDOS as of 2023-09-22, running unbound DNS server worked fine, this might also saturate your internet connection.
```shell $ cargo run -- check-string --help
Usage: email-validate check-string [OPTIONS] --input
Options:
--input separated by space, coma or semicolon
--concurrency
```shell cargo run -- check-file --help
Usage: email-validate check-file [OPTIONS] --file-input
Options:
--file-input
--file-input
may be repeat for multiple files.
Hitting Esc/CTRL+C/q will abort quit the CLI progress.
The output will be a TUI progress screen identical like the subcommand check-dir
.
```shell cargo run -- check-dir --help
Usage: email-validate check-dir [OPTIONS] --dir-input
Options:
--dir-input
Hitting Esc/CTRL+c/q
will process abort the CLI progress.