One endpoint,
every stack
Copy-paste, tested integrations for the tools you actually build with, and for the AI builders that generate the UI but leave the backend to you.
Integrations by platform
The form looks finished and posts nowhere
Lovable, Bolt, v0, and the rest generate a submit handler that calls preventDefault and never fetches anything, so the page shows a success message and sends nothing. These pages carry the prompt that produces a working integration first time, and the correction for when the agent invents a secret key it does not need.
- LovableMake your Lovable contact form actually sendLovable builds a beautiful contact form UI, but the submit button goes nowhere. Point it at one MakeTheForm endpoint to get spam-filtered submissions by email and in an inbox: no Supabase, no Resend, no backend.
- Bolt.newGive your Bolt.new form a real backendBolt.new ships the form UI; the submit does nothing. Point it at one MakeTheForm endpoint for spam-filtered submissions by email and in an inbox: no server, no database. (This is Bolt.new the AI builder, not Bolt CMS.)
- v0Wire your v0 form to email in one stepv0 generates a gorgeous shadcn/ui form, but the action goes nowhere. Wire it to one MakeTheForm endpoint for spam-filtered submissions by email and in an inbox: no route handler, no database.
A controlled component needs the submit handled deliberately
React, Next.js, and Astro can post a form natively, but re-rendering on submit means preserving values on failure, resetting only on success, and keeping the button disabled while the request is in flight. Each page carries the tested handler, including the server-side variant where the framework offers one.
- ReactReact contact form to email, no serverBuild a React contact form that emails you without a backend. POST it to one MakeTheForm endpoint for spam filtering, email delivery, and a searchable inbox.
- Next.jsNext.js contact form, no API routeAdd a Next.js contact form without a backend. Use a Server Action or client fetch to POST to one MakeTheForm endpoint: spam filtered, emailed, and stored.
- AstroAstro contact form, straight to emailAdd an Astro contact form that emails you. Astro forms are static HTML, point the action at one MakeTheForm endpoint for spam, email, and stored submissions.
- WebflowWebflow form endpoint, on any planSet a custom form action in Webflow to send submissions to one MakeTheForm endpoint: spam filtered, emailed, and saved to a searchable inbox. Works on any plan.
No server to run, which is exactly the point
GitHub Pages, Netlify, and any folder served over HTTP cannot execute server code at all, so an external endpoint suits them perfectly. No build step and no JavaScript: the action attribute points at a URL and the browser does the rest. Webflow sits here too, because its form settings expose the action field directly.
Pick your stack, paste the snippet
Create an endpoint, copy the integration for your framework, and watch the first submission land.
Create free endpoint