If you’ve ever pasted a raw mailto: link into a README, a Twitter bio, or a static blog, you already know the downside: spammers harvest those addresses in seconds, and every visitor sees your personal inbox. Enter formcrab.com, a no‑code, anti‑spam solution that lets you receive messages through a private link, keep your email invisible, and stay in full control of the submission flow.
Why Hide Your Email in the First Place?
- Bots love
mailto:links – Web scrapers crawl the entire web looking for them. - Spam floods in – Once a bot finds your address, you’ll be buried under junk.
- Professionalism – A clean, custom landing page looks far better than a raw email address.
FormCrab solves all of these problems with a single, short URL that you can embed anywhere: GitHub READMEs, Twitter bios, static sites, or even QR codes.
Zero‑Code, Zero‑Hosting
| What you don’t need | What you do get |
|---|---|
| HTML form markup | A fully‑styled landing page hosted by FormCrab |
| Server‑side code | A backend that automatically forwards submissions to your inbox |
| Ongoing hosting fees | Free static‑site hosting for the form itself |
| Spam‑filter configuration | Built‑in anti‑spam protection (no visible email address) |
All you do is create a private link at https://formcrab.com/f/{your‑token} and paste it wherever you like. When a visitor clicks the link, they see a clean form, fill it out, and you receive the message directly in your mailbox—no extra steps, no exposed address.
Customizing the Experience with GET Parameters
FormCrab lets you pre‑fill fields or tweak the post‑submission flow simply by adding query parameters to your private link. Replace {custom-link} with your unique token.
1. Auto‑fill the Name Field
<a href="https://formcrab.com/f/{custom-link}?name=Hugh" target="_blank">Email us</a>
2. Pre‑set the Visitor’s Email
<a href="https://formcrab.com/f/{custom-link}[email protected]" target="_blank">Contact Support</a>
3. Set a Custom Subject (for classification)
<a href="https://formcrab.com/f/{custom-link}?subject=Urgent+Support+Request" target="_blank">Report an Issue</a>
4. Provide a Template Message
<a href="https://formcrab.com/f/{custom-link}?message=I+would+like+to+request+a+demo" target="_blank">Inquiry</a>
5. Override the “Thank You” Redirect
<a href="https://formcrab.com/f/{custom-link}?next=https://yoursite.com/success" target="_blank">Send and Return</a>
These parameters are optional; the form still works perfectly without them. They simply give you a smoother UX and reduce friction for your users.
Hook Into Your Own Workflows with a Webhook
If you prefer to process submissions programmatically—e.g., forward them to a CRM, Slack channel, or custom dashboard—just point a webhook URL to FormCrab. Each POST request follows this JSON schema:
{
"name": "Hugh",
"email": "[email protected]",
"subject": "hello! there",
"message": "hello! there",
"submittedAt": "2026-03-12 10:20:08",
"extra": {
"key1": "value1",
"key2": "value2"
}
}
All fields are populated from the form (or from GET parameters you supplied). The extra object can carry any additional data you decide to pass via hidden inputs or client‑side scripts.
Perfect Use Cases
| Platform | How to Use FormCrab |
|---|---|
| GitHub README | https://formcrab.com/f/{token}?subject=Feature+Request |
| Twitter Bio | Short link like formcrab.com/f/{token} – no HTML required |
| Static Blog (e.g., Jekyll, Hugo) | Embed the link in a button or plain text; the form lives on FormCrab’s domain |
| QR Code on Business Cards | Encode the private link; scan to open a clean feedback form |
Because the form lives on a separate domain, you never need to bundle any assets with your site, and visitors never see your email address.
Getting Started in 3 Simple Steps
- Create a token at
formcrab.com– you’ll receive a unique URL (https://formcrab.com/f/abcd1234). - Paste the link wherever you want (README, bio, website).
- Enjoy inbox deliveries and optional webhook pushes—no code, no spam, no hassle.
Bottom Line
Managing website form submissions doesn’t have to involve complex server setups or fear of email scraping. With FormCrab, you get a minimalist, zero‑code experience that hides your address, protects you from bots, and gives you full flexibility through GET parameters and webhooks. Replace every raw mailto: link you own with a single, elegant FormCrab URL and let the inbox peace of mind flow in.
Ready to ditch the spam and simplify your contact flow? Visit formcrab.com and start building your private form today.