smtp-send
SKILL.md
Email Send
发送邮件,支持 SMTP 和 Resend API 两种方式。
🚀 快速使用
# 发送简单邮件
python3 scripts/send_email.py \
--to recipient@example.com \
--subject "Meeting Tomorrow" \
--body "Hi, let's meet at 2pm tomorrow."
# 发送 HTML 邮件
python3 scripts/send_email.py \
--to recipient@example.com \
--subject "Weekly Report" \
--body "<h1>Report</h1><p>Here are the updates...</p>" \
--html