Form backend for any website

Point your HTML form to our endpoint and start receiving submissions instantly. Email notifications, spam protection, and a beautiful dashboard — no backend code required.

Everything you need, nothing you don't

Instant Setup

Create a form endpoint in seconds. Just point your HTML form's action to our URL and you're live.

📧

Email Notifications

Receive an email with every submission. Beautiful, formatted notifications right to your inbox.

🛡️

Spam Protection

Built-in honeypot fields silently block bots while real users submit without friction.

📊

Dashboard

View all your submissions in a clean dashboard. Export data, filter, and manage your forms.

How it works

1

Create a form

Sign up and create a form endpoint in your dashboard. Set your notification email.

2

Add to your site

Copy the endpoint URL and set it as your HTML form's action attribute.

3

Receive submissions

Get email notifications and view all submissions in your dashboard. That's it!

Dead simple integration

Just plain HTML. Works with any website, any framework.

<!-- Just point your form action to your endpoint -->
<form action="https://sendform.online/f/your-form-id"
      method="POST">

  <!-- Honeypot spam protection (keep hidden) -->
  <input name="_gotcha" style="display:none" />

  <input name="name" placeholder="Your name" />
  <input name="email" type="email" />
  <textarea name="message"></textarea>

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