To export a Webflow site and enable form submissions without using Webflow’s form handling, you’ll need to export the code and configure a third-party form handling service for email delivery.
You need a form backend to capture submissions and send emails to your client. Reliable options include:
These services don’t require server-side code and work easily with exported HTML forms.
In your exported HTML file(s), find the form tag and change the action attribute to match the instructions from your chosen form service. For example:
Set action="https://formspree.io/f/yourFormID"
Add method="POST" and optionally an input with name="_replyto" for the sender’s email.
Depending on the service, you can add hidden fields to:
<input type="hidden" name="_redirect" value="https://yoursite.com/thank-you">)
To export your Webflow site and make forms send data to your client’s email:
This method bypasses Webflow’s form system and gives you full control over your hosting and submissions.