Integrations / Zapier
Sendersy + Zapier
Zapier + Sendersy: use the "Webhooks by Zapier → POST" action targeting /v1/emails with a Bearer token. Triggered by any of 6,000+ Zapier sources.
1. Install
bash
# Zapier → Create Zap → Add action → Webhooks by Zapier → POST
2. Environment variables
bash
# In the POST action step: # URL: https://api.sendersy.com/v1/emails # Payload Type: json # Headers: Authorization=Bearer sk_live_..., Content-Type=application/json
3. Send an email
json
// "Webhooks by Zapier → POST" step → Data (JSON body):
{
"from": "Acme <noreply@acme.com>",
"to": "{{trigger.email}}",
"subject": "Welcome, {{trigger.first_name}}!",
"template_id": "welcome",
"variables": {
"name": "{{trigger.first_name}}"
},
"tags": [{"name": "source", "value": "zapier"}]
}
// Trigger can be any: Typeform submit, Google Sheets new row,
// Stripe charge.succeeded, HubSpot new contact, etc.