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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install email-bot - After installation, invoke the skill by name or use
/email-bot - Provide required inputs per the skill's parameter spec and get structured output
What is Email Bot?
Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields. It is an AI Agent Skill for Claude Code / OpenClaw, with 300 downloads so far.
How do I install Email Bot?
Run "/install email-bot" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Email Bot free?
Yes, Email Bot is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Email Bot support?
Email Bot is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Email Bot?
It is built and maintained by unixlamadev-spec (@unixlamadev-spec); the current version is v1.0.0.