Agent Skills: Email Sender Tool

使用SMTP发送带附件的邮件,支持HTML模板、多收件人和文件附件。基于nodemailer。

UncategorizedID: aidotnet/moyucode/email-sender

Install this agent skill to your local

pnpm dlx add-skill https://github.com/AIDotNet/MoYuCode/tree/HEAD/skills/tools/email-sender

Skill Files

Browse the full folder contents for email-sender.

Download Skill

Loading file tree…

skills/tools/email-sender/SKILL.md

Skill Metadata

Name
email-sender
Description
使用SMTP发送带附件的邮件,支持HTML模板、多收件人和文件附件。基于nodemailer。

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

# 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

SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
SMTP_FROM=Your Name <your-email@gmail.com>

Tags

email, smtp, notification, automation

Compatibility

  • Codex: ✅
  • Claude Code: ✅