Creating a simple way for users to reach you without exposing your personal email address is a common challenge for developers of static sites, GitHub README files, Twitter bios, and minimalist blogs. Traditional mailto: links leak your address to web scrapers, invite spam, and give you no control over the user experience after the form is submitted.
Enter formcrab.com – a no‑code, privacy‑first contact solution that gives you a private link, anti‑spam protection, and a fully managed landing page. In this post we’ll walk through why a privacy‑first approach matters, how to get started with Formcrab, and how to fine‑tune the experience using GET parameters.
Why Hide Your Email?
| Problem | Consequence |
|---|---|
mailto: links are crawled by bots |
Your address appears in spam lists |
| Static sites often lack a backend | You can’t process submissions safely |
| Hard‑coded forms require hosting & maintenance | Extra cost and security risk |
| No post‑submission feedback | Users are left guessing if the message was sent |
By removing the raw email from the page and handing the data off to a dedicated service, you keep your inbox private, avoid bot harvesting, and provide a polished experience for visitors.
Introducing Formcrab.com
Formcrab is built specifically for developers who need a quick, zero‑maintenance contact point. Here’s what you get out of the box:
- Receive Messages, Hide Your Email – Share a single private link; inbound messages land in your inbox.
- No Code Required – No HTML form to write, no server to configure.
- Anti‑Spam Protection – Built‑in bot filters keep your inbox clean.
- Scraper‑Safe – No
mailto:link means bots can’t harvest your address. - One Link, Full Control – Perfect for GitHub READMEs, Twitter bios, static blogs, or any place you can post a URL.
- Free Landing Page & Backend – Formcrab hosts the form, the styling, and the email delivery.
All you need is the unique token that Formcrab generates for you. Replace {custom-link} in the examples below with your own token.
Getting Started in 2 Minutes
- Create a Formcrab link – Sign up at formcrab.com and generate a private endpoint:
https://formcrab.com/f/{your-token}. - Add the link wherever you like – Markdown, HTML, a plain URL, a QR code—anywhere your audience can click.
- Test it – Fill out the form; the message arrives in the inbox you specified.
That’s it. No deployment, no SSL worries, no server‑side code.
Customizing the Email Form Link with GET Parameters
Formcrab lets you pre‑fill fields and control the post‑submission flow by appending query parameters to your private link. This is handy when you already know part of the information (e.g., the user’s name) or when you want to categorize incoming messages.
1. Auto‑fill Name
If you already know the visitor’s name, pass it via the name parameter:
<a href="https://formcrab.com/f/{custom-link}?name=Hugh" target="_blank">Email us</a>
The form will open with the Name field populated with “Hugh”.
2. Pre‑set Visitor Email
When you have the visitor’s email stored (e.g., in a CRM), you can pre‑populate the Email field:
<a href="https://formcrab.com/f/{custom-link}[email protected]" target="_blank">Contact Support</a>
3. Custom Subject
Add a subject to classify messages. The subject appears in your email notification:
<a href="https://formcrab.com/f/{custom-link}?subject=Urgent+Support+Request" target="_blank">Report an Issue</a>
4. Predefined Message
Guide users with a template message. Use the message parameter:
<a href="https://formcrab.com/f/{custom-link}?message=I+would+like+to+request+a+demo" target="_blank">Inquiry</a>
5. Custom Redirect (next)
By default Formcrab shows a “Thank You” page after a successful submission. Override it with the next parameter to send users back to your own site:
<a href="https://formcrab.com/f/{custom-link}?next=https://yoursite.com/success" target="_blank">Send and Return</a>
You can combine parameters—for example, pre‑fill a name and redirect after submission:
https://formcrab.com/f/{custom-link}?name=Alex&next=https://example.com/thanks
Putting It All Together: A Real‑World Example
Imagine you have a static documentation site hosted on GitHub Pages. In the README.md you want a “Get Help” button that automatically includes the repository name as the subject and sends the user back to the docs after they submit.
[Get Help](https://formcrab.com/f/ABcDeF12?subject=Doc+Help+%28my‑repo%29&next=https://github.com/username/my-repo#contact)
When a visitor clicks Get Help, the form opens with the subject already set to “Doc Help (my‑repo)”. After they hit Send, they are taken back to the #contact anchor on your repo page—creating a seamless, privacy‑first support loop.
TL;DR
- Stop exposing raw email addresses on the web.
- Formcrab.com gives you a private, anti‑spam‑protected link that delivers messages straight to your inbox—no code, no hosting.
- Use GET parameters (
name,email,subject,message,next) to pre‑fill the form and control the post‑submission experience. - Perfect for GitHub READMEs, Twitter bios, static blogs, or any place where you can drop a single URL.
Ready to protect your inbox and give visitors a smooth contact experience? Visit formcrab.com, generate your private link, and start building privacy‑first contact pages today. 🚀