How to Use FormCrab.com for Linktree and Bio Sites

If you’ve ever placed a plain mailto: link in a GitHub README, Twitter bio, or a static blog, you’ve probably noticed a flood of spam or realized that anyone can see your personal address. FormCrab.com eliminates that problem with a single private link that forwards messages directly to your inbox—no code, no hosting, and built‑in anti‑spam protection. Below is a step‑by‑step guide to turning your Linktree, Link‑in‑Bio, or any “one‑link‑everywhere” page into a safe, controllable contact hub.


Why Replace Raw Email Links?

Problem How FormCrab Solves It
Web scrapers harvest mailto: URLs Your email never appears in the HTML; bots only see a FormCrab endpoint.
Spam inboxes Built‑in anti‑spam filters block automated junk before it reaches you.
Maintaining separate landing pages FormCrab provides the landing page, the form, and the backend—nothing to host.
Need to collect extra context (e.g., name, subject) GET parameters let you pre‑fill fields or set the email subject on the fly.
Multiple platforms, one link One private URL works everywhere—Twitter, GitHub, LinkedIn, personal sites, static blogs, and of course Linktree.

Bottom line: you keep your real address invisible while still receiving clean, direct messages in your mailbox.


Quick Setup – No Code Required

  1. Create a FormCrab form

    • Visit formcrab.com.
    • Click “Create New Form”.
    • Choose the destination email address where you want the messages delivered.
    • Press “Generate Link”. You’ll receive a private URL that looks like https://formcrab.com/f/abcd1234.
  2. Copy the link

    • This is the only URL you will ever share publicly.
  3. Add the link to your Linktree (or any bio platform)

    • Log in to your Linktree dashboard.
    • Click “Add New Link” → give it a title (e.g., “Contact Me”).
    • Paste the FormCrab URL as the destination.
    • Save.

    The same link works in a GitHub README, a Twitter bio, a personal static site, or any place that accepts a hyperlink.

Tip: Because the link points to a FormCrab landing page, you don’t need to write any HTML or CSS. Users are presented with a clean, responsive form automatically.


Customizing the Form Experience with GET Parameters

FormCrab lets you tweak the form on the fly by appending query strings to your private URL. Replace {custom-link} in the examples below with the token you received (e.g., abcd1234). These parameters can be combined, separated by &.

1. Auto‑fill the Name field

If you already know the visitor’s name, you can pre‑populate it:

<a href="https://formcrab.com/f/{custom-link}?name=Hugh" target="_blank">Email us</a>

2. Pre‑set the Visitor Email

When you already have the user’s email (e.g., from a CRM), pass it along:

<a href="https://formcrab.com/f/{custom-link}[email protected]" target="_blank">Contact Support</a>

3. Add a Custom Subject

Classify incoming messages automatically; the subject appears in your notification email:

<a href="https://formcrab.com/f/{custom-link}?subject=Urgent+Support+Request" target="_blank">Report an Issue</a>

4. Provide a Predefined Message

Guide users with a starter template:

<a href="https://formcrab.com/f/{custom-link}?message=I+would+like+to+request+a+demo" target="_blank">Inquiry</a>

5. Override the Post‑Submission Redirect

By default FormCrab shows a generic “Thank You” page. Use next to send visitors anywhere you like:

<a href="https://formcrab.com/f/{custom-link}?next=https://yoursite.com/success" target="_blank">Send and Return</a>

Combining parameters (example: name + subject + redirect):

<a href="https://formcrab.com/f/{custom-link}?name=Alex&subject=Feature+Request&next=https://example.com/thanks" target="_blank">Ask for a Feature</a>

All of these links still count as a single private endpoint, so you retain full control and keep your email hidden.


Use Cases Across Platforms

Platform How to Implement
Linktree / Link‑in‑Bio Add the plain FormCrab link as a new button. Optionally use subject to differentiate “General Inquiry” vs. “Collaboration”.
GitHub README Insert a Markdown link: [Contact me →](https://formcrab.com/f/{custom-link}). Use next to redirect back to the repo after sending.
Twitter / X Bio Place a short call‑to‑action with the private URL. Twitter auto‑shortens links, keeping the UI tidy.
Static Site (Hugo, Jekyll, Eleventy, etc.) Add a one‑line <a> tag wherever you need a contact button. No server‑side code required.
Personal Portfolio Create multiple links—one for “Hire Me”, another for “Report a Bug”—each with a different subject value to make sorting easier.

Best Practices

  1. Keep the token secret – treat the FormCrab URL like a password; anyone with it can send you messages.
  2. Use descriptive subject values – they appear in email headers, making triage a breeze.
  3. Leverage next for brand consistency – redirect users to a custom thank‑you page that matches your site’s look and feel.
  4. Combine parameters sparingly – too many pre‑filled fields can look suspicious to users; only include what truly adds value.
  5. Monitor spam protection – FormCrab automatically blocks bots, but if you notice unexpected traffic, consider adding a hidden honeypot field (handled internally).

The Bottom Line

  • Receive messages directly in your inbox without ever exposing your real email address.
  • Zero code, zero hosting: FormCrab supplies the landing page, the form UI, and the backend.
  • Anti‑spam protection keeps bots at bay.
  • GET parameters give you granular control over pre‑filled data, subject tagging, and post‑submission redirects.

Whether you’re a developer showcasing projects on GitHub, a creator linking to a personal portfolio from Twitter, or a small business using Linktree to consolidate contact points, FormCrab.com turns a single private link into a powerful, spam‑free communication hub.

Ready to protect your inbox?
Visit formcrab.com, generate your private link, and start sharing it everywhere—without ever writing a line of HTML. Happy networking!

Ready to build your own forms?

Start receiving submissions today without worrying about email exposure or complex backends.

Create Your Private Link
Back to all articles