--- id: AIDotNet/MoYuCode/email-sender version: "19f3d680" license: MIT install: manual updated: 2026-01-28 --- # email-sender — email-sender enables you to integrate email delivery directly into your applications using SMTP. Configure your mail server settings and trigger messages programmatically to automate notifications, alerts, and communications at scale. Publisher: AIDotNet · Stars: 84 · Updated: 2026-01-28 Install (manual): `git clone https://github.com/AIDotNet/MoYuCode` ## SKILL.md # Email Sender Tool ## Description Send emails with HTML content, attachments, and multiple recipients via SMTP. ## Trigger - `/send-email` command - User requests to send email - User needs email notification ## Usage ```bash # Send simple email python scripts/send_email.py --to "user@example.com" --subject "Hello" --body "Message content" # Send with attachment python scripts/send_email.py --to "user@example.com" --subject "Report" --body "See attached" --attachment "report.pdf" # Send HTML email python scripts/send_email.py --to "user@example.com" --subject "Newsletter" --html "template.html" ``` ## Environment Variables ```env SMTP_HOST=smtp.gmail.com SMTP_PORT=587 SMTP_USER=your-email@gmail.com SMTP_PASS=your-app-password SMTP_FROM=Your Name ``` ## Tags `email`, `smtp`, `notification`, `automation` ## Compatibility - Codex: ✅ - Claude Code: ✅ [View on SkillFed](https://skillfed.io/AIDotNet/MoYuCode/email-sender) · [View on GitHub](https://github.com/AIDotNet/MoYuCode)