1.6k★by mrgoodb
sendgrid – OpenClaw Skill
sendgrid is an OpenClaw Skills integration for writing workflows. Send transactional and marketing emails via SendGrid API. Supports templates, attachments, and email analytics.
1.6k stars1.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | sendgrid |
| description | Send transactional and marketing emails via SendGrid API. Supports templates, attachments, and email analytics. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/sendgrid |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/sendgrid |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.5 KBSKILL.md
name: sendgrid description: Send transactional and marketing emails via SendGrid API. Supports templates, attachments, and email analytics. metadata: {"clawdbot":{"emoji":"📧","requires":{"env":["SENDGRID_API_KEY"]}}}
SendGrid
Send emails at scale.
Environment
export SENDGRID_API_KEY="SG.xxxxxxxxxx"
Send Email
curl -X POST "https://api.sendgrid.com/v3/mail/send" \
-H "Authorization: Bearer $SENDGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"personalizations": [{"to": [{"email": "recipient@example.com"}]}],
"from": {"email": "sender@example.com"},
"subject": "Hello",
"content": [{"type": "text/plain", "value": "Hello World!"}]
}'
Send with Template
curl -X POST "https://api.sendgrid.com/v3/mail/send" \
-H "Authorization: Bearer $SENDGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"personalizations": [{
"to": [{"email": "recipient@example.com"}],
"dynamic_template_data": {"name": "John", "order_id": "12345"}
}],
"from": {"email": "sender@example.com"},
"template_id": "d-xxxxxxxxxxxx"
}'
List Templates
curl "https://api.sendgrid.com/v3/templates?generations=dynamic" \
-H "Authorization: Bearer $SENDGRID_API_KEY"
Get Email Stats
curl "https://api.sendgrid.com/v3/stats?start_date=2024-01-01" \
-H "Authorization: Bearer $SENDGRID_API_KEY"
Links
- Console: https://app.sendgrid.com
- Docs: https://docs.sendgrid.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install sendgrid?
Run openclaw add @mrgoodb/sendgrid in your terminal. This installs sendgrid into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/sendgrid. Review commits and README documentation before installing.
