Sends the same email to multiple recipients in a single API request. This endpoint is identical to the send email endpoint, with the only difference being that recipients is an array of recipients instead of a single recipient. Maximum limit: 100 recipients per request.
HTML content of the email. Required if not using templateId.Handlebars Template Variables:Use Handlebars syntax for template variables in your HTML. Variables are wrapped in double curly braces: {{variableName}}.
Example:
Copy
<h1>Hello {{firstName}}!</h1><p>Your order #{{orderNumber}} has been shipped.</p><p>Total: {{orderTotal}}</p>
Provide the values for these variables in the dynamicData field (either at the root level for all recipients, or per recipient).Example:
Copy
<h1>Hello {{firstName}}!</h1>\n<p>Your order #{{orderNumber}} has been shipped.</p>\n<p>Total: {{orderTotal}}</p>