FormLoom

Send an HTML form to email with no backend

Turn a plain HTML form into emails — no PHP, no server, no Node. Just a hosted endpoint.

  1. 1

    Get a free access key

    Sign up (or use the email-only fast path) to mint a FormLoom access key — the form id that's safe to commit.

  2. 2

    Paste the form

    Add a `<form action method="POST">` to your page pointing at your FormLoom endpoint.

  3. 3

    Add a redirect

    Include a hidden `redirect` field so the visitor lands on a thank-you page after submitting.

  4. 4

    Test it

    Submit the form — the message arrives in your inbox and appears in your dashboard.

example.html
<form action="https://api.formloom.ai/submit/YOUR_ACCESS_KEY" method="POST">
  <input type="hidden" name="redirect" value="https://yoursite.com/thanks" />
  <input type="email" name="email" required />
  <textarea name="message" required></textarea>
  <button type="submit">Send</button>
</form>

FAQ

No. The browser POSTs directly to FormLoom, which emails you and stores the submission.

Related how-tos

Get your free access key

Start free — no card
Send an HTML form to email with no backend — FormLoom · FormLoom