Form Alert lets you receive form submissions directly to your email. No backend, no database, no server. Three steps and you're done.
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.
fa_f_pk_7a3b9f2e1d4c8a6b5e0f3d2cAdd 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
<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>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.