From aidotnet-moyucode
Sends emails via SMTP with HTML content, attachments, and multiple recipients. Useful for automated notifications and reports.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aidotnet-moyucode:email-senderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send emails with HTML content, attachments, and multiple recipients via SMTP.
Send emails with HTML content, attachments, and multiple recipients via SMTP.
/send-email command# Send simple email
python scripts/send_email.py --to "[email protected]" --subject "Hello" --body "Message content"
# Send with attachment
python scripts/send_email.py --to "[email protected]" --subject "Report" --body "See attached" --attachment "report.pdf"
# Send HTML email
python scripts/send_email.py --to "[email protected]" --subject "Newsletter" --html "template.html"
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
[email protected]
SMTP_PASS=your-app-password
SMTP_FROM=Your Name <[email protected]>
email, smtp, notification, automation
npx claudepluginhub joshuarweaver/cascade-data-analytics --plugin aidotnet-moyucodeSends emails from Node.js via SMTP, OAuth2, attachments, and HTML templates. Useful for transactional email, notifications, and report delivery in backend apps.
Integrates email services into backends using SMTP, third-party providers like SendGrid and AWS SES, and templates. Useful for transactional emails, password resets, and notification workflows.
Email delivery patterns including single, batch, scheduled emails and attachment handling. Use when building transactional email systems, batch communication workflows, scheduled delivery, or implementing file/URL attachments with reply-to and CC/BCC functionality.