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
Authorizationheader, never on the client. - On
429/5xx, retry with exponential backoff (respectRetry-After). - Prefer
templateKeyover inline HTML to keep content versioned. - Handle errors via the response
error.codefield — see Errors. - Send from a verified domain — see Domains.