← 返回
未分类 中文

Email Engine

Send emails, bulk campaigns, AI-powered classification, auto-reply generation, and template management.
发送邮件、批量营销活动、AI分类、自动回复生成、模板管理
cameron48 cameron48 来源
未分类 clawhub v1.0.0 1 版本 99715.9 Key: 无需
★ 0
Stars
📥 351
下载
💾 0
安装
1
版本
#latest

概述

Email Engine

Send transactional and outreach emails, run bulk campaigns, classify inbound messages with AI, generate contextual replies, and manage reusable templates. Designed for AI agents that need to communicate with humans over email as part of autonomous workflows.

Authentication

All endpoints require x402 payment (USDC on Base L2). Send a request without payment to receive pricing info in the 402 response.

Endpoints

Send Email

  • Method: POST
  • Path: /api/email/send
  • Price: $0.02 per call
  • Description: Send a single email. Supports HTML and plain text, attachments, and reply-to threading.

Request:

{
  "to": "mike@comfortzonehvac.com",
  "from": "cameron@mcfagentic.com",
  "subject": "Quick question about your scheduling, Mike",
  "body_html": "<p>Hi Mike,</p><p>I noticed Comfort Zone HVAC is crushing it on reviews...</p>",
  "body_text": "Hi Mike, I noticed Comfort Zone HVAC is crushing it on reviews...",
  "reply_to": "cameron@mcfagentic.com",
  "track_opens": true,
  "track_clicks": true
}

Response:

{
  "id": "msg_4k9xr2",
  "status": "sent",
  "to": "mike@comfortzonehvac.com",
  "sent_at": "2026-04-01T14:40:00Z"
}

Send Bulk

  • Method: POST
  • Path: /api/email/send-bulk
  • Price: $0.01 per recipient
  • Description: Send a campaign to multiple recipients. Supports personalization variables and staggered delivery.

Request:

{
  "template_id": "tmpl_cold_outreach_v2",
  "recipients": [
    {"email": "mike@comfortzonehvac.com", "variables": {"first_name": "Mike", "company": "Comfort Zone HVAC"}},
    {"email": "sarah@northtexasair.com", "variables": {"first_name": "Sarah", "company": "North Texas Air"}}
  ],
  "from": "cameron@mcfagentic.com",
  "stagger_minutes": 5,
  "track_opens": true
}

Response:

{
  "campaign_id": "camp_7n3mp1",
  "total_recipients": 2,
  "status": "queued",
  "estimated_completion": "2026-04-01T14:50:00Z"
}

AI Classify

  • Method: POST
  • Path: /api/email/ai/classify
  • Price: $0.05 per call
  • Description: Classify an inbound email using AI. Returns intent, sentiment, urgency, and suggested action.

Request:

{
  "subject": "Re: Quick question about your scheduling",
  "body": "Hey Cameron, this sounds interesting. We've been struggling with scheduling for a while. Can you tell me more about pricing?",
  "sender": "mike@comfortzonehvac.com"
}

Response:

{
  "classification": {
    "intent": "interested",
    "sentiment": "positive",
    "urgency": "medium",
    "category": "sales-reply",
    "suggested_action": "send-pricing",
    "confidence": 0.94
  }
}

AI Reply

  • Method: POST
  • Path: /api/email/ai/reply
  • Price: $0.10 per call
  • Description: Generate a contextual reply to an email thread using AI. Takes conversation history and CRM context.

Request:

{
  "thread": [
    {"from": "cameron@mcfagentic.com", "body": "Quick question about your scheduling..."},
    {"from": "mike@comfortzonehvac.com", "body": "This sounds interesting. Can you tell me more about pricing?"}
  ],
  "context": {
    "lead_stage": "qualified",
    "solution": "ai-scheduling-bundle",
    "monthly_price": "$497"
  },
  "tone": "casual-professional",
  "goal": "book-a-call"
}

Response:

{
  "reply": {
    "subject": "Re: Quick question about your scheduling",
    "body": "Hey Mike,\n\nGlad it caught your eye. The AI scheduling package runs $497/mo and typically pays for itself within the first month...",
    "call_to_action": "calendar-link"
  }
}

Manage Templates

  • Method: POST
  • Path: /api/email/templates
  • Price: $0.02 per call
  • Description: Create or update reusable email templates with personalization variables.

Request:

{
  "name": "Cold Outreach v2",
  "subject": "Quick question about your {{pain_point}}, {{first_name}}",
  "body_html": "<p>Hi {{first_name}},</p><p>I noticed {{company}} is doing great work in {{industry}}...</p>",
  "variables": ["first_name", "company", "industry", "pain_point"]
}

Response:

{
  "id": "tmpl_cold_outreach_v2",
  "name": "Cold Outreach v2",
  "variables": ["first_name", "company", "industry", "pain_point"],
  "created_at": "2026-04-01T14:45:00Z"
}

Use Cases

  • An outreach agent sends personalized cold emails to leads from the pipeline
  • A support agent classifies inbound emails and routes them to the right workflow
  • An autonomous sales agent generates and sends follow-up replies based on prospect responses
  • A marketing agent runs drip campaigns across segmented lead lists
  • An agent orchestrator monitors email threads and escalates urgent messages

Pricing

EndpointPriceDescription
------------------------------
/api/email/send$0.02Send a single email
/api/email/send-bulk$0.01/recipientBulk campaign send
/api/email/ai/classify$0.05AI email classification
/api/email/ai/reply$0.10AI reply generation
/api/email/templates$0.02Create/update templates

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 06:45 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Ads Optimizer

cameron48
AI驱动的广告投放管理,包含绩效审计、优化分析、A/B测试和异常检测。
★ 0 📥 484

Notifications Engine

cameron48
多渠道通知发送,支持自定义模板、邮件和短信发送以及完整送达日志,专为AI代理打造。
★ 0 📥 388

Analytics Engine

cameron48
事件追踪、漏斗分析、群组留存、多触点归因、收入指标和实时分析——专为AI代理设计。
★ 0 📥 402