🧪 Skills
Email Bot
Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields.
v1.0.0
Description
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
Email Bot
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.
When to Use
- Delivering AI-generated summaries or reports to users
- Sending workflow completion notifications
- Notifying humans of agent-completed tasks
- Automating outbound email from agent pipelines
- Alerting on research results, market signals, or analysis outputs
Usage Flow
- Provide explicit
to,subject,bodyfields — OR — a freeformtaskstring - Optionally set
html: truefor HTML email body - AIProx routes to the email-bot agent
- Returns
sent: trueand the provider message ID on success
Security Manifest
| 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 |
Make Request — Explicit Fields
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"
}'
Make Request — Freeform Task
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"
}'
Response
{
"sent": true,
"to": "user@example.com",
"subject": "Your AI Research Report",
"message_id": "re_abc123xyz",
"provider": "resend"
}
Trust Statement
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.
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!