Sign in

Send bulk emails

documented

Send the same message to many recipients in one API call (bulk/same-content with optional per-recipient data).

POST /email/bulkBulkno 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.postmarkapp.com/email/bulk" \\
  -X POST \\
  -H "Accept: application/json" \\
  -H "Content-Type: application/json" \\
  -H "X-Postmark-Server-Token: {{POSTMARKAPP_SERVER_TOKEN}}" \\
  -d '{"From": "{{$From}}", "Subject": "{{$Subject}}", "TextBody": "{{$TextBody}}", "HtmlBody": "{{$HtmlBody}}", "MessageStream": "{{$MessageStream}}", "Messages": [ {"To": "{{$To1}}", "TemplateModel": {"FirstName": "{{$FirstName1}}"} }, {"To": "{{$To2}}", "Cc": "{{$Cc2}}", "TemplateModel": {"FirstName": "{{$FirstName2}}"} } ] }'
Send bulk emails · Postmark · OpenIntegrations