The easiest way to handle form submissions
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.
Your forms are protected with encryption, rate limiting, and spam prevention. Email addresses are never exposed in URLs.
Handle PDF resumes, images, and documents seamlessly. Files are automatically converted and attached to emails.
Receive professionally formatted emails with all form data. Reply-To headers let you respond directly to submitters.
Verify your email, get a secure token, and you're done. Works with any HTML form or JavaScript application.
Built-in honeypot fields, rate limiting, and timing checks protect against bots and abuse.
Works seamlessly with modern web apps, Shopify stores, and static sites. No backend required.
Visit the setup page and verify your email address. You'll receive a unique encrypted token.
Create Endpoint →Use your secure endpoint as the form action. That's it!
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>
For single-page apps, use fetch API to submit without page reload.
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' }) });
Form submissions arrive in your inbox with professional formatting, file attachments, and reply-to headers configured.
First, verify your email address to prove ownership. You'll receive a confirmation link.
After verification, you get a secure encrypted token. Your email is never exposed in URLs.
Users fill out your form. Data is sent to your secure endpoint with built-in spam protection.
You receive a beautifully formatted email with all form data and attachments.
Check out these working examples to get started quickly
Create your secure form endpoint in less than a minute
Create Your Endpoint Now →