Интеграции / Zapier
Sendersy + Zapier
Zapier + Sendersy: используйте action "Webhooks by Zapier → POST" с URL /v1/emails и Bearer-токеном. Триггерится любым из 6000+ Zapier-источников.
1. Установка
bash
# Zapier → Create Zap → Add action → Webhooks by Zapier → POST
2. Переменные окружения
bash
# В шаге POST-action: # URL: https://api.sendersy.com/v1/emails # Payload Type: json # Headers: Authorization=Bearer sk_live_..., Content-Type=application/json
3. Отправка письма
json
// Шаг "Webhooks by Zapier → POST" → Data (JSON body):
{
"from": "Acme <noreply@acme.com>",
"to": "{{trigger.email}}",
"subject": "Привет, {{trigger.first_name}}!",
"template_id": "welcome",
"variables": {
"name": "{{trigger.first_name}}"
},
"tags": [{"name": "source", "value": "zapier"}]
}
// Trigger может быть любым: Typeform submit, Google Sheets new row,
// Stripe charge.succeeded, HubSpot new contact и т.д.