Send email
Official agent skills for Lumbox — email infrastructure for AI agents (inboxes, OTP extraction, send/reply via REST + MCP).
npx -y skills add kumard3/lumbox-skills --skill send-emailAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Send an email from a Lumbox inbox to any recipient. Handles threading, attachments, and returns a message ID for future replies.
SKILL.md
2.1 KB, 562 tokens by cl100k_base, as published. Nobody here has run it
Send an Email
Use this skill when an AI agent needs to send an email - a reply, a notification, a form submission, or outbound agent-to-human communication.
When to use
- Agent needs to reply to an email it received
- Agent needs to initiate outbound contact (notify a user, file a form)
- Agent needs to forward an email
Prerequisites
- A Lumbox inbox ID (see the
create-lumbox-inboxskill) LUMBOX_API_KEYenvironment variable set- Recipient email address
Steps
-
Call the send endpoint:
curl -X POST "https://api.lumbox.co/v1/inboxes/$INBOX_ID/send" \ -H "X-API-Key: $LUMBOX_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "to": "[email protected]", "subject": "Hello from an AI agent", "text": "Plain text body.", "html": "<p>HTML body.</p>" }' -
Read the response. You get a message ID that identifies this email for future threading:
{ "id": "eml_7y3c...", "message_id": "<[email protected]>", "sent_at": "2026-04-18T10:35:00.000Z" } -
For replies, use the reply endpoint instead - it sets
In-Reply-ToandReferencesheaders correctly so the email threads in the recipient's client:curl -X POST "https://api.lumbox.co/v1/inboxes/$INBOX_ID/reply" \ -H "X-API-Key: $LUMBOX_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "reply_to_email_id": "eml_of_original", "text": "Thanks for the OTP." }'
Tips
- Sending uses AWS SES under the hood - deliverability is high.
- For bulk sends (up to 100 recipients at once), use
/v1/send/bulk. - Attachments: include a
attachmentsarray withfilenameand base64content. - To forward: use
/v1/inboxes/:id/forwardwith the email ID and new recipient.
Related skills
create-lumbox-inbox- provision the sending inboxwait-for-otp- receive the reply if the recipient sends one back
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.