node-mail-cli
v1.2.1
Published
this is node based mail cli tool
Downloads
25
Readme
📬 node-mail-cli
A simple and flexible CLI tool to send emails directly from the terminal using SMTP. Useful for automated deployments, CI/CD pipelines, or simple notifications.
🚀 Installation
npm install -g node-mail-cli
node-mail-cli \
--from "[email protected]" \
--to "[email protected]" \
--application_url "https://your-application-url"
--subject "Deployment Status" \
--text "Your app was successfully deployed!" \
--host "smtp.example.com" \
--smtp_port 587 \
--main_email "[email protected]" \
--password "your_email_password"
