Integrations / Webflow
Sendersy + Webflow
Webflow + Sendersy: Webflow Logic → HTTP Request block, or classic Webflow Forms webhook → your proxy → /v1/emails.
1. Install
bash
# Webflow → Logic → Add Flow → trigger "Form submission" # Then add step "Make HTTP Request"
2. Environment variables
bash
# In Logic step "Make HTTP Request": # Method: POST # URL: https://api.sendersy.com/v1/emails # Headers: Authorization=Bearer sk_live_..., Content-Type=application/json
3. Send an email
json
// Webflow Logic → HTTP Request body (use {{form.field}} substitutions):
{
"from": "Webflow site <noreply@yoursite.com>",
"to": "{{form.Email}}",
"subject": "Thanks for your submission!",
"html": "<p>Hi {{form.Name}}!</p><p>We received your form.</p>",
"tags": [{ "name": "source", "value": "webflow" }]
}
// For richer cases (drip workflows, segments) push the data first to
// Sendersy /api/v1/audiences/{id}/contacts and then trigger a workflow.