Wix
Wix has no built-in form backend, but its Embed a Widget element lets you drop a plain HTML form onto any page. Formstork gives you the endpoint, so submissions land in your inbox and dashboard without an app from the Wix marketplace.
The form
<form action="https://api.formstork.com/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
<label>Name <input type="text" name="name" required></label>
<label>Email <input type="email" name="email" required></label>
<label>Message <textarea name="message" required></textarea></label>
<!-- Honeypot: bots fill this, humans don't. Keep it hidden. -->
<input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
<button type="submit">Send</button>
</form>
Step by step
- In the Wix Editor, click Add (+), then Embed Code, and choose Embed a Widget (the HTML iframe element).
- Click Enter Code on the placeholder and paste the form above.
- Replace
YOUR_ACCESS_KEYwith the key from your Formstork dashboard. - Click Update, then drag and resize the widget so the whole form is visible.
- Publish the site and send a test message to confirm it reaches your inbox.
Good to know
Wix runs the widget inside an iframe. A POST form works fine there, so your visitor is taken to Formstork’s thank-you page after they submit. The hidden botcheck honeypot quietly blocks most spam bots. On the free plan you get 250 submissions a month.
Paste your first form and get your free access key from the dashboard.