Quickstart
Make any form on any site send to your inbox in three steps. No backend, no server code — just one URL.
1. Create a form
Sign in to your dashboard and click New form. Give it a name (so you can tell submissions apart in your inbox) and add the email addresses that should receive submissions. You'll get a unique endpoint URL that looks like this:
https://formto.email/f/abc12XYZ2. Point your form at it
Set your HTML form's action attribute to the endpoint URL and use method="POST". That's the entire integration.
<form action="https://formto.email/f/abc12XYZ" method="POST">
<input type="text" name="name" placeholder="Your name" required />
<input type="email" name="email" placeholder="Your email" required />
<textarea name="message" placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>3. Submit and check your inbox
Submit the form once. You'll get a confirmation page back, and a formatted email lands in every recipient's inbox within seconds. Every submission is also stored in your dashboard, where you can search, filter, and export.
What you can do next
The default flow shows our generic "Submission received" page after submit. You probably want to send users somewhere of your own, customize the email subject, or wire up file uploads. All of that is documented below.