extension-email-raw
Send an email with multiple to, cc and bcc addresses.
DeepseekModel
Curated skill
Quality Good · 48
v1.0.0
Get
https://deepseekmodel.com/api/download.php?id=caffeinelabs-skills-skills-extension-email-raw-skill-md&format=skill
Download .skill
Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
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); }; }; }; };
Keywords that activate this skill. Click one to copy it.
This skill does not provide trigger words.
The downloaded .skill package contains the following fields.
| Field | Description |
|---|---|
| format | Format tag (skill/v1) |
| skill_id | Unique skill ID |
| name | Skill name |
| version | Version |
| description | Description |
| category | Categories (array) |
| trigger_words | Trigger words |
| tags | Tags |
| source | Source |
| source_url | Source URL (this page) |
| exported_at | Exported at (set per download) |
| system_prompt | System prompt body |
| model_config | Model config: provider / model / temperature / max_tokens / top_p |
| examples | Examples |
| install_guide | Import guide for Coze / Dify / Claude / custom frameworks |
The same skill can be exported in different platform formats.