📬 FormSubmit

The easiest way to handle form submissions

Service Online

Send Form Data to Your Email

No backend code required. Just point your form to our endpoint and receive submissions directly in your inbox. Perfect for contact forms, job applications, and surveys.

🔒

Secure & Private

Your forms are protected with encryption, rate limiting, and spam prevention. Email addresses are never exposed in URLs.

📎

File Attachments

Handle PDF resumes, images, and documents seamlessly. Files are automatically converted and attached to emails.

✉️

Beautiful Emails

Receive professionally formatted emails with all form data. Reply-To headers let you respond directly to submitters.

Easy Setup

Verify your email, get a secure token, and you're done. Works with any HTML form or JavaScript application.

🛡️

Spam Protection

Built-in honeypot fields, rate limiting, and timing checks protect against bots and abuse.

🌐

CORS Enabled

Works seamlessly with modern web apps, Shopify stores, and static sites. No backend required.

🚀 Quick Start

1

Create Your Secure Endpoint

Visit the setup page and verify your email address. You'll receive a unique encrypted token.

Create Endpoint →
2

Add to Your HTML Form

Use your secure endpoint as the form action. That's it!

<form action="YOUR_SECURE_ENDPOINT" method="POST"> <input type="text" name="name" required> <input type="email" name="email" required> <textarea name="message"></textarea> <button type="submit">Send</button> </form>
3

Or Use with JavaScript (AJAX)

For single-page apps, use fetch API to submit without page reload.

fetch('YOUR_SECURE_ENDPOINT', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ name: 'John Doe', email: 'john@example.com', message: 'Hello!', _replyto: 'john@example.com', _subject: 'New Contact Form Submission' }) });
4

Receive Beautiful Emails

Form submissions arrive in your inbox with professional formatting, file attachments, and reply-to headers configured.

How It Works

📧

Email Verification

First, verify your email address to prove ownership. You'll receive a confirmation link.

🔐

Encrypted Token

After verification, you get a secure encrypted token. Your email is never exposed in URLs.

📝

Form Submission

Users fill out your form. Data is sent to your secure endpoint with built-in spam protection.

✉️

Email Delivery

You receive a beautifully formatted email with all form data and attachments.

🎨 Examples

Check out these working examples to get started quickly

📋

Basic Contact Form

Simple HTML form with name, email, and message fields.

View Example →

AJAX Form

Submit without page reload using JavaScript fetch API.

View Example →
📎

File Upload Form

Handle file attachments like PDFs and images.

View Example →
🔒

Secure Form

Complete example using encrypted token endpoint.

View Example →

Ready to Get Started?

Create your secure form endpoint in less than a minute

Create Your Endpoint Now →