{
    "format": "skill/v1",
    "skill_id": "caffeinelabs-skills-skills-extension-email-raw-skill-md",
    "name": "extension-email-raw",
    "version": "1.0.0",
    "description": "Send an email with multiple to, cc and bcc addresses.",
    "category": [
        "职场效率"
    ],
    "trigger_words": [],
    "tags": [
        "email",
        "ai"
    ],
    "source": "DeepseekModel",
    "source_url": "https://deepseekmodel.com/skill?id=caffeinelabs-skills-skills-extension-email-raw-skill-md",
    "exported_at": "2026-09-18T08:59:31+08:00",
    "system_prompt": "name extension-email-raw description Send an email with multiple to, cc and bcc addresses. version 0.1.6 compatibility {\"mops\":{\"caffeineai-email\":\"~0.2.0\"}} caffeineai-subscription [\"plus\",\"pro\"] Email — Raw Multi-Recipient Raw multi-recipient email extension for Caffeine AI . Overview This skill adds support for sending emails with multiple to , cc , and bcc recipients. Not suitable for bulk service emails (recipients see each other). Backend This extension is for sending an email with support for multiple to , cc and bcc addresses. This should NOT be used for sending service emails to multiple users because each recipient will see all the other recipients listed which would typically be a breach of user privacy. For sending an email This extension depends on the extension-email for sending emails. Use the sendRawEmail function. It returns a SendResult which is #ok if the email is sent successfully otherwise #err(error) with the error text. There can be a maximum of 50 recipients in total Each recipient receives the same email module { public type SendResult = { #ok; #err : Text; }; public func sendRawEmail( fromUsername : Text, to : [Text], cc : [Text], bcc : [Text], subject : Text, htmlBody : Text, ) : async SendResult; }; Example usage for sending an email reminder to meeting attendees. import Runtime \"mo:core/Runtime\"; import EmailClient \"mo:caffeineai-email/emailClient\"; actor { public func sendMeetingReminder( meetingSubject : Text, meetingTime : Text, confirmedAttendeeEmails : [Text], tentativeAttendeeEmails : [Text], ) : async () { let result = await EmailClient.sendRawEmail( \"no-reply\", confirmedAttendeeEmails, tentativeAttendeeEmails, [], meetingSubject, \"Reminder the meeting will start at \" # meetingTime, ); switch (result) { case (#ok) {}; case (#err(error)) { Runtime.trap(\"Failed to send meeting reminder email: \" # error); }; }; }; };",
    "model_config": {
        "provider": "deepseek",
        "model": "deepseek-chat",
        "temperature": 0.7,
        "max_tokens": 4096,
        "top_p": 0.9
    },
    "examples": [
        {
            "input": "请用extension-email-raw帮我处理问题",
            "output": "好的，我是extension-email-raw。Send an email with multiple to, cc and bcc addresses. 我会根据你的需求提供专业帮助。"
        },
        {
            "input": "介绍一下你的能力",
            "output": "我是extension-email-raw，专注于职场效率领域。Send an email with multiple to, cc and bcc addresses."
        }
    ],
    "install_guide": {
        "coze": "在 Coze 平台创建 Bot -> 技能配置 -> 导入此 .skill 文件",
        "dify": "在 Dify 平台创建应用 -> 添加知识库 -> 导入此 .skill 配置",
        "claude": "将 system_prompt 字段内容复制到 Claude 自定义指令中",
        "custom": "将此 .skill 文件加载到你的 AI Agent 框架中，解析 system_prompt 和 model_config 即可使用"
    }
}