Sign in

Send transactional email

documented

Send a transactional email via Brevo SMTP endpoint.

POST /v3/smtp/emailMessaging APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.brevo.com/v3/smtp/email" \
  -X POST \
  -H "accept: application/json" \
  -H "api-key: {{SENDINBLUE_API_KEY}}" \
  -H "content-type: application/json" \
  -d '{"sender": {"name": "{{$sender_name}}", "email": "{{$sender_email}}"}, "to": [{"email": "{{$recipient_email}}", "name": "{{$recipient_name}}"}], "subject": "{{$subject}}", "htmlContent": "<html><body><p>{{$body_html}}</p></body></html>"}'
Send transactional email · Brevo · OpenIntegrations