Send Publiq emails from Make

Use the "HTTP → Make a request" module in Make (formerly Integromat) to call the Publiq API in your scenario.

No code: use an HTTP request module to call the Publiq API from any automation.

URL:     https://api.publiq.digital/v1/emails
Method:  POST
Headers:
  Authorization: Bearer YOUR_PUBLIQ_API_KEY
  Content-Type: application/json
Body (Raw / JSON):
{
  "from": "you@yourdomain.com",
  "to": "{{1.email}}",
  "templateKey": "welcome-email"
}

Best practices

  • Always call Publiq from the server — the API key goes in the Authorization header, never on the client.
  • On 429/5xx, retry with exponential backoff (respect Retry-After).
  • Prefer templateKey over inline HTML to keep content versioned.
  • Handle errors via the response error.code field — see Errors.
  • Send from a verified domain — see Domains.

See also

Send Publiq emails from Make — Publiq Docs