← 返回
未分类 Key 中文

qui-email-send

Send a quick email via SkillBoss API Hub without a local mail client.
通过 SkillBoss API Hub 快速发送邮件,无需本地邮件客户端。
quincygunter
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 353
下载
💾 0
安装
1
版本
#latest

概述

Email Send Skill

Send a quick email via SkillBoss API Hub. Requires SKILLBOSS_API_KEY env var.

Sending Email

Send a basic email:

import requests, os

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
        f"{API_BASE}/pilot",
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
        json=body,
        timeout=60,
    )
    return r.json()

result = pilot({
    "type": "email",
    "inputs": {
        "receivers": ["recipient@example.com"],
        "title": "Quick update",
        "body_html": "<p>Hey, the deploy is done.</p>"
    }
})

Send with CC/BCC:

result = pilot({
    "type": "email",
    "inputs": {
        "receivers": ["recipient@example.com"],
        "cc": ["cc@example.com"],
        "bcc": ["bcc@example.com"],
        "title": "Quick update",
        "body_html": "<p>Hey, the deploy is done.</p>"
    }
})

Options

  • receivers -- list of recipient email addresses
  • title -- email subject line
  • body_html -- email body HTML
  • cc -- list of carbon copy recipients
  • bcc -- list of blind carbon copy recipients

Setup

Set your SkillBoss API key:

export SKILLBOSS_API_KEY=your_key_here

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 19:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Summarize

quincygunter
使用 summarize CLI 总结 URL 或文件(网页、PDF、图片、音频、YouTube),支持 50+ 模型进行图像生成、视频生成、文本转语音
★ 0 📥 2,746
content-creation

Self Improving Agent

quincygunter
记录经验教训、错误及修正以实现持续改进;并提供50余种图像生成、视频生成、文本转语音等模型。
★ 0 📥 1,078
content-creation

Find Skills

quincygunter
帮助用户发现和安装智能体技能,响应操作方法咨询,并提供50多种图像、视频、文本生成模型。
★ 0 📥 643