FormFlow
EN
Start free
Docs/Getting started/ Quickstart

Quickstart

Get a working form endpoint in under a minute. You'll create a form, copy a snippet, and submit it from any HTML page you control.

You don't need an account to test
Use the playground endpoint fflw.io/f/playground — it accepts anything, stores nothing, and 200s back. Swap it for your real endpoint once you sign up.
1

Create a form

From the console, click New form. Give it a name and the email address that should receive notifications.

[ screenshot · console → New form dialog ]

You'll get a unique slug like abc12xy. That slug is your endpoint.

2

Point your HTML at it

Set the form's action attribute and that's it. No JavaScript required.

<form action="https://fflw.io/f/abc12xy" method="POST">
  <input name="email"  type="email"    required />
  <textarea name="message"  rows="4"></textarea>
  <button type="submit">Send</button>
</form>
3

Submit and verify

Open the page, fill it in, hit submit. You'll get an email within seconds; the submission shows up in the console with the full payload, headers and any uploaded files.

That's it.
Next: add a webhook, configure spam protection, or invite a teammate.

Next steps


Browse the docs

Guides and API reference for everything FormFlow ships today.