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"}]}'