3-minute setup
How formvoxo works
No backend code. No SMTP config. Just a form action URL and your inbox.
-
1
Create a form in the dashboard
Sign up free, name your form (e.g. Contact), and choose the email address that should receive submissions.
-
2
Copy your endpoint URL
Each form gets a unique POST URL like /f/your-token. Paste it as the action on your HTML form. or call it from fetch() with JSON.
-
3
Receive submissions instantly
Visitors submit from your site. We validate, filter spam, store the row, and email you the fields. Optional thank-you redirect included.
Example HTML
<form action="https://yoursite.com/f/your-token" method="POST">
<input type="email" name="email" required>
<textarea name="message"></textarea>
<input type="text" name="_gotcha" style="display:none" tabindex="-1">
<button type="submit">Send</button>
</form>
Create your first form
Read the docs for reserved fields and AJAX.