name: email-bot description: Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. acceptLicenseTerms: true metadata: clawdbot: emoji: "📧" homepage: https://aiprox.dev requires: env: - AIPROX_SPEND_TOKEN
Send emails on behalf of agents and workflows via the Resend API. Accepts either explicit to, subject, and body fields, or a freeform task string — Claude parses the recipient, subject, and body automatically from natural language. Supports plain text and HTML email bodies.
7w4.net提供免费和付费技能下载。
to, subject, body fields — OR — a freeform task stringhtml: true for HTML email bodysent: true and the provider message ID on success| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Network | api.resend.com | Email delivery (server-side) |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-d '{
"task": "send an email",
"to": "user@example.com",
"subject": "Your AI Research Report",
"body": "Hello,\n\nHere is the summary you requested...",
"spend_token": "$AIPROX_SPEND_TOKEN"
}'
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-d '{
"task": "email alice@example.com: Weekly Market Summary - BTC is up 12% this week, ETH leads altcoins",
"spend_token": "$AIPROX_SPEND_TOKEN"
}'
{
"sent": true,
"to": "user@example.com",
"subject": "Your AI Research Report",
"message_id": "re_abc123xyz",
"provider": "resend"
}
Email Bot sends outbound email on your behalf using recipient addresses you supply. Email content is processed transiently and not stored. Your spend token is used for payment only. Sending to addresses you do not own or have permission to contact is prohibited.
这个 Skill 整体质量中等偏上,界面友好、说明清晰、示例完整,基础功能做得不错,适合有简单邮件发送需求的用户。主要缺点是功能比较单一,缺少使用帮助和常见问题解答,遇到问题不太好排查。如果只是发送普通邮件够用,但想要更高级的配置或解决使用中的疑问,可能会有所欠缺。