How it works

Form Alert lets you receive form submissions directly to your email. No backend, no database, no server. Three steps and you're done.

1

Get your access key

Enter your email address and we'll send you a free access key. This key identifies your account and tells us where to deliver form submissions. No sign-up form, no password, no dashboard to configure.

Your access key will look like this
fa_f_pk_7a3b9f2e1d4c8a6b5e0f3d2c
2

Add a form to your website

Add a standard HTML form to your site and point it at our API. Include your access key as a hidden field. That's it — no JavaScript required for basic usage.

Works with any framework. See all integration guides

HTML
<form
  action="https://api.form-alert.com/v1/submit"
  method="POST"
>
  <input
    type="hidden"
    name="access_key"
    value="YOUR_ACCESS_KEY"
  />

  <input type="text" name="name" required />
  <input type="email" name="email" required />
  <textarea name="message" required></textarea>

  <button type="submit">Send</button>
</form>
3

Receive submissions via email

When someone fills out your form, we send the submission straight to your email. Every field is included in a clean, readable format. No dashboard to check, no notifications to configure.

That's it. Your form is live and you'll get an email every time someone submits it.

You'll receive an email like this
From: Form Alert
Subject: New form submission

Name: Jane Doe
Email: jane@example.com
Message: Hi, I'd like to learn more about your services.

Ready to get started?

Get a free access key and have form notifications running in under a minute.