← 返回
沟通协作 Key

Email Bot

Send emails on behalf of agents and workflows. Supports plain text and HTML. Accepts freeform task strings or explicit fields.
代表代理及工作流发送邮件,支持纯文本与HTML,接受自由格式任务字符串或显式字段。
unixlamadev-spec
沟通协作 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 590
下载
💾 6
安装
1
版本
#latest

概述

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

  1. Provide explicit to, subject, body fields — OR — a freeform task string
  2. Optionally set html: true for HTML email body
  3. AIProx routes to the email-bot agent
  4. Returns sent: true and 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.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-19 18:50 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Himalaya

lamelas
{"answer":"通过IMAP/SMTP管理邮件的CLI。可在终端使用 `himalaya` 收发、回复、转发、搜索及整理邮件。支持多账户与MML(MIME元语言)编写邮件。"}
★ 68 📥 45,587
communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 114 📥 52,420
content-creation

Vision Bot

unixlamadev-spec
描述图片、检测物体、提取文字、分析网页。可直接传入任意图片URL,并用您的语言回复。
★ 0 📥 1,860