Loading skill documentation...
sales ๐Ÿ”ฅ Trending
โ˜…โ˜…โ˜…โ˜…ยฝ 4.8/5.0 โค๏ธ 820 likes ๐Ÿ’ฌ 94 comments ๐Ÿ“ฆ 2395 installs
Back to Skills
๐Ÿ“– SKILL DOCUMENTATION
# email-send

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": ["[email protected]"], "title": "Quick update", "body_html": "

Hey, the deploy is done.

" } }) Send with CC/BCC: result = pilot({ "type": "email", "inputs": { "receivers": ["[email protected]"], "cc": ["[email protected]"], "bcc": ["[email protected]"], "title": "Quick update", "body_html": "

Hey, the deploy is done.

" } }) 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

Reviews

4.8
โ˜…โ˜…โ˜…โ˜…ยฝ
94 reviews

Write a Review

โ˜† โ˜† โ˜† โ˜† โ˜†

Get Weekly AI Skills

Join 80,000+ one-person companies automating with AI