Serverless · $0 to start

Forms.
Finally
free.

Drop one <form> tag into any static site. Submissions land in your inbox. No backend. No servers. Just a $9/mo SaaS running on $1.50/mo in AWS.

contact.html
<!-- Before FormDrop: set up Express, 
     deploy a server, pay $40/mo -->

<!-- After FormDrop: -->
<form
  action="https://api.formdrop.io/f/abc123"
  method="POST"
>
  <input name="name" />
  <input name="email" />
  <textarea name="message"></textarea>
  <button type="submit">Send</button>
</form>

<!-- That's it. We handle everything. -->
$1.50
AWS cost / month
47ms
Avg. response time
99.9%
Uptime (Lambda SLA)
Auto-scale capacity

Three steps.
Zero servers.

01

Point your form at us

Change your form's action URL to your unique FormDrop endpoint. Works with any HTML form — no JavaScript required.

action="https://api.formdrop.io/f/{your-id}"
02

We catch the submission

API Gateway receives the POST, Lambda validates and sanitizes it, DynamoDB stores the record — in under 50ms.

POST /f/abc123 → 200 OK {"id": "sub_xyz"}
03

Check your inbox

SES sends you a formatted email instantly. Or pull from the dashboard. Or set up a Webhook. Your choice.

✉ New submission from contact form

AWS serverless stack
🌐
API Gateway
HTTP API — receives form POST
~$0.35/mo
λ
Lambda
Validate · sanitize · route
~$0.00/mo
📦
DynamoDB
Store submissions on-demand
~$0.50/mo
SES
Send email notification
~$0.10/mo
S3 + CloudFront
Dashboard static site
~$0.55/mo

The $1.50/mo stack that runs a $9/mo SaaS.

The insight from the article is simple: AWS serverless services charge per-request, not per-hour. At low-to-medium volume, you pay almost nothing while your users experience enterprise-grade reliability.

FormDrop adds one twist: Cognito for auth, so each user gets isolated endpoints and a dashboard. The margin at $9/mo is 83%.

Monthly AWS cost breakdown
API Gateway (100k req) $0.35
Lambda (100k invocations) $0.00
DynamoDB (on-demand) $0.50
SES (100k emails) $0.10
S3 + CloudFront $0.55
Cognito (free tier) $0.00
Total per customer $1.50 / mo

Try it right now.

your contact form → api.formdrop.io/f/demo
lambda · request log (simulated)
No submissions yet.
Fill out the form → watch it process.

Pay per value,
not per server.

Hobby
$0
forever free
  • 100 submissions / month
  • Email notifications
  • 1 form endpoint
  • 7-day submission history
  • FormDrop branding
Start free
Team
$29
per month · up to 5 seats
  • Everything in Pro
  • 5 team members
  • Shared dashboard
  • Custom domain (your API endpoint)
  • Priority email support
  • 1-year submission history
Get started
Copied to clipboard!