使用SMTP发送带附件的邮件,支持HTML模板、多收件人和文件附件。基于nodemailer。
Scanned 2/12/2026
Install to Claude Code
npx -y skills add AIDotNet/MoYuCode --skill email-sender --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Email Sender?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aidotnet-email-sender)More formats (shields.io, HTML) on the badges page.
---
name: email-sender
description: 使用SMTP发送带附件的邮件,支持HTML模板、多收件人和文件附件。基于nodemailer。
metadata:
short-description: 通过SMTP发送邮件
source:
repository: https://github.com/nodemailer/nodemailer
license: MIT
---
# 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 <your-email@gmail.com>
```
## Tags
`email`, `smtp`, `notification`, `automation`
## Compatibility
- Codex: ✅
- Claude Code: ✅
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...