Send a quick email via SkillBoss API Hub without a local mail client.
Scanned 9/10/2026
Install to Claude Code
npx -y skills add luokai0/ai-agent-skills-by-luo-kai --skill mar-email-send --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Mar Email Send?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/luokai0-mar-email-send)More formats (shields.io, HTML) on the badges page.
---
name: email-send
description: "Send a quick email via SkillBoss API Hub without a local mail client."
metadata:
{
"openclaw":
{
"emoji": "📧",
"requires": { "env": ["SKILLBOSS_API_KEY"] },
},
}
---
# Email Send Skill
Send a quick email via SkillBoss API Hub. Requires `SKILLBOSS_API_KEY` env var.
## Sending Email
Send a basic email:
```python
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:
```python
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:
```bash
export SKILLBOSS_API_KEY=your_key_here
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!