sendgrid

Installation
SKILL.md

SendGrid

Send transactional and marketing emails.

Environment Variables

  • SENDGRID_API_KEY - API key

Send email

curl -s -X POST -H "Authorization: Bearer $SENDGRID_API_KEY" \
  -H "Content-Type: application/json" \
  "https://api.sendgrid.com/v3/mail/send" \
  -d '{"personalizations":[{"to":[{"email":"recipient@example.com"}]}],"from":{"email":"sender@example.com"},"subject":"Hello","content":[{"type":"text/plain","value":"Message body"}]}'

List contacts

Installs
1
First Seen
Mar 1, 2026
sendgrid — thinkfleetai/thinkfleet-engine