Webflow + MailOdds
Validate emails from Webflow form submissions. Verify leads before they reach your CRM and keep your marketing lists clean.
Setup time: 5-10 min
Difficulty: Beginner
1,000 free validations included
Prerequisites
- MailOdds account with API key
- Webflow site with forms
- Zapier or Make account
How to Connect
Example Workflow
1
Trigger: Webflow Form Submission
Fires when a visitor submits a form on your Webflow site.
2
Validate: MailOdds API
Verify the email address with SMTP and domain checks.
3
Route: Filter by Result
Valid emails go to your CRM. Invalid ones are logged for review.
4
Action: Add to CRM or List
Send verified leads to HubSpot, Mailchimp, Google Sheets, etc.
Zapier: Validate Webflow Form Email
JAVASCRIPT// Zapier Code Step - Validate Webflow Form Submission
const response = await fetch('https://api.mailodds.com/v1/validate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: inputData.email // Mapped from Webflow form field
})
});
const result = await response.json();
return {
email: result.result.email,
status: result.result.status,
action: result.result.action,
is_valid: result.result.action === 'accept',
reason: result.result.sub_status || null
}; Make: Webflow Scenario
JAVASCRIPT// Make Scenario - Webflow Form + MailOdds
// 1. Webflow: Watch Form Submissions (trigger)
// 2. HTTP Module: POST to https://api.mailodds.com/v1/validate
// Headers: Authorization: Bearer YOUR_API_KEY
// Body: { "email": "{{1.data.email}}" }
// 3. Router: Branch by action
// - "accept" -> Add to Mailchimp / CRM
// - "reject" -> Log to Google Sheets for review Frequently Asked Questions
Troubleshooting
Need more help?
Can't find what you're looking for? We're here to help you get Webflow working.
Validate Your Webflow Leads
Get 1,000 free validations and start verifying form submissions today.