๐ฆ ClawHub
Save To Email
by @chjm-ai
Send emails through the Resend API. Use when the user wants to send an email, deliver a report by email, forward generated content to an inbox, or trigger an...
TERMINAL
clawhub install save-to-email๐ About This Skill
name: save-to-email description: Send emails through the Resend API. Use when the user wants to send an email, deliver a report by email, forward generated content to an inbox, or trigger an email notification. Trigger on phrases like "send email", "ๅ้ฎไปถ", "้ฎไปถ้็ฅ", "email this", or "ๆ็ปๆๅๅฐ้ฎ็ฎฑ". metadata: openclaw: requires: env: - RESEND_API_KEY - RESEND_FROM bins: - curl - python3 primaryEnv: RESEND_API_KEY
Save To Email
Send HTML emails with Resend.
When To Use
Use this skill when the user wants Claude to:
Setup
This skill requires a local .env file in the skill root with:
RESEND_API_KEY=your_resend_api_key
RESEND_FROM="Your Name "
If .env is missing, load the variables from the shell environment before using the script.
Command
./scripts/send-email.sh "recipient@example.com" "Subject" "HTML content
"
Input Rules
Use valid HTML. For plain text, wrap content in or convert line breaks to .
Examples
./scripts/send-email.sh \
"recipient@example.com" \
"Daily Report" \
"Summary
All jobs finished successfully.
"
html="Project Update
- Task A done
- Task B in progress
"
./scripts/send-email.sh "recipient@example.com" "Project Status" "$html"
Notes
.env automatically when present.โก When to Use
๐ก Examples
./scripts/send-email.sh \
"recipient@example.com" \
"Daily Report" \
"Summary
All jobs finished successfully.
"
html="Project Update
- Task A done
- Task B in progress
"
./scripts/send-email.sh "recipient@example.com" "Project Status" "$html"
โ๏ธ Configuration
This skill requires a local .env file in the skill root with:
RESEND_API_KEY=your_resend_api_key
RESEND_FROM="Your Name "
If .env is missing, load the variables from the shell environment before using the script.
๐ Tips & Best Practices
.env automatically when present.