royge / checkemail

Basic Email Validation Checker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

checkemail

Rust

Basic Email Validation Checker

This tool is created to help my wife in validating the email(s) provided by their client.

DISCLAIMER

I used ChatGPT (Mar 23, 2023 release) to the start this program and improve it because it won't compile back then. :-)

How To Build

cargo build --release

Build Windows Executable from Apple Silicon Mac

Source: Stack Overflow

brew install mingw-w64
rustup target add x86_64-pc-windows-gnu
rustup toolchain install stable-x86_64-pc-windows-gnu
cargo build --release --target=x86_64-pc-windows-gnu

Build Executable for Intel Mac from Apple Silicon Mac

Source: ChatGPT

softwareupdate --install-rosetta
rustup target add x86_64-apple-darwin
export CARGO_HOME=$HOME/rust/cargo
cargo build --target=x86_64-apple-darwin

How To Use

On Unix

./checkemail user@email.com

On Windows

checkemail.exe user@email.com

About

Basic Email Validation Checker

License:MIT License


Languages

Language:Rust 100.0%