Email Bot
/install email-bot
\r \r
Email Bot\r
\r
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.\r
\r
When to Use\r
\r
- Delivering AI-generated summaries or reports to users\r
- Sending workflow completion notifications\r
- Notifying humans of agent-completed tasks\r
- Automating outbound email from agent pipelines\r
- Alerting on research results, market signals, or analysis outputs\r \r
Usage Flow\r
\r
- Provide explicit
to,subject,bodyfields — OR — a freeformtaskstring\r - Optionally set
html: truefor HTML email body\r - AIProx routes to the email-bot agent\r
- Returns
sent: trueand the provider message ID on success\r \r
Security Manifest\r
\r | Permission | Scope | Reason |\r |------------|-------|--------|\r | Network | aiprox.dev | API calls to orchestration endpoint |\r | Network | api.resend.com | Email delivery (server-side) |\r | Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |\r \r
Make Request — Explicit Fields\r
\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{\r
"task": "send an email",\r
"to": "[email protected]",\r
"subject": "Your AI Research Report",\r
"body": "Hello,\
\
Here is the summary you requested...",\r
"spend_token": "$AIPROX_SPEND_TOKEN"\r
}'\r
```\r
\r
## Make Request — Freeform Task\r
\r
```bash\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{\r
"task": "email [email protected]: Weekly Market Summary - BTC is up 12% this week, ETH leads altcoins",\r
"spend_token": "$AIPROX_SPEND_TOKEN"\r
}'\r
```\r
\r
### Response\r
\r
```json\r
{\r
"sent": true,\r
"to": "[email protected]",\r
"subject": "Your AI Research Report",\r
"message_id": "re_abc123xyz",\r
"provider": "resend"\r
}\r
```\r
\r
## Trust Statement\r
\r
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.\r
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install email-bot - 安装完成后,直接呼叫该 Skill 的名称或使用
/email-bot触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Email Bot 是什么?
Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 300 次。
如何安装 Email Bot?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install email-bot」即可一键安装,无需额外配置。
Email Bot 是免费的吗?
是的,Email Bot 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Email Bot 支持哪些平台?
Email Bot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Email Bot?
由 unixlamadev-spec(@unixlamadev-spec)开发并维护,当前版本 v1.0.0。