Documentation

FormFast gives you a form endpoint you can point any HTML form at. We handle email delivery, spam protection, file uploads, and data storage — no backend code required.

New to FormFast?

The fastest way to get started: head to the Quick Start guide and have a working form in under a minute.

Features

How it works

Point your form's action attribute at your FormFast endpoint URL. When someone submits the form, we process the submission, send you an email notification, and store the data in your dashboard.

HTML
<form action="https://formfa.st/f/your_endpoint_id" method="POST">
  <input type="text" name="name" required />
  <input type="email" name="email" required />
  <textarea name="message"></textarea>
  <button type="submit">Send</button>
</form>

FormFast accepts application/x-www-form-urlencoded, multipart/form-data, and application/json. Browser submissions get a redirect; AJAX requests with Accept: application/json get a JSON response.

Two ways to create an endpoint

Anonymous (no account)

Enter your email on the homepage. We'll email you a verification link. Click it, and your endpoint is live. Anonymous endpoints are limited to 1 form with 50 submissions/month.

Dashboard (with account)

Create an account to access the full dashboard where you can manage multiple forms, view submissions, configure auto-replies, set up webhooks, and more.

What's next