| Crates.io | email-verifier |
| lib.rs | email-verifier |
| version | 0.1.4 |
| created_at | 2024-05-20 02:59:07.062282+00 |
| updated_at | 2024-05-28 00:15:12.400772+00 |
| description | A simple Rust crate to verify email addresses. |
| homepage | |
| repository | https://github.com/Mintype/email-verifier |
| max_upload_size | |
| id | 1245367 |
| size | 46,887 |
A simple Rust crate to verify email addresses.
email-verifier is a easy-to-use Rust crate that simplifies the process of verifing email addresses and/or getting data essential data on them.
Add rust-translate and tokio to your Cargo.toml file:
[dependencies]
email-verifier = "0.1.4"
Add the latest version of email-verifier with cargo add email-verifier.
use email_verifier::fetch_email_data;
fn main() {
match fetch_email_data("test@mail7efe.io") {
Ok(response) => println!("{:?}", response),
Err(e) => eprintln!("Error: {}", e),
}
}
Contributions are welcome! Feel free to open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
You can find this crate and the latest version on crates.io.