The Easiest Way to Collect Client Inquiries on Your Carrd Website

If you’ve built a sleek landing page with Carrd and you’re ready to start getting real conversations, there’s one thing you absolutely must avoid: plastering a raw email address on the page. Not only does that invite spam bots, it also exposes your inbox to endless junk and makes the user experience feel clunky.

Enter formcrab.com – a zero‑code, anti‑spam contact form service that gives you a private link, a ready‑made landing page, and a backend that delivers every message straight to your inbox. No HTML to write, no hosting fees, and complete control over how the form looks and behaves.

Below you’ll learn how to integrate Formcrab with Carrd in minutes, why it’s better than a plain mailto: link, and how to customize the experience with GET parameters and webhooks.


Why Formcrab Beats a Plain Email Link

Problem Traditional mailto: Formcrab Solution
Spam bots Web scrapers crawl for mailto: and harvest addresses. Your email never appears in the page source; bots only see a harmless link.
User friction Clicking opens the visitor’s email client – not always desirable. A clean, responsive form that works on any device.
No branding The email client’s UI, not yours. Fully customizable form URL that matches your brand.
No tracking You can’t categorize messages automatically. Pass a subject or other parameters to tag inquiries.
No automation You must manually forward or filter emails. Webhook support lets you push data to Zapier, CRM, or Slack.
Cost Free but risky. Free tier with premium options, no extra hosting cost.

One‑Click Integration with Carrd

  1. Create a Formcrab link

    • Sign up at formcrab.com and generate a unique token (e.g., abcd1234). Your private form URL will be:
    https://formcrab.com/f/abcd1234
    
  2. Add a button or link in Carrd

    • Open your Carrd editor → + ElementButton (or Link).
    • Set the URL to your Formcrab link.
    • Choose Open in new tab (recommended) so users stay on your site after submitting.
  3. Publish – That’s it. When a visitor clicks the button, they see a sleek Formcrab landing page, fill it out, and you receive the message directly in your inbox.

No HTML, no JavaScript, no extra hosting. Carrd does the heavy lifting of layout, Formcrab does the form.


Supercharge the Form with GET Parameters

Formcrab lets you pre‑fill fields or change the post‑submission flow simply by appending query parameters to your private link. Replace {custom-link} with your actual token.

1. Auto‑fill Name

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

If you already know the visitor’s name (e.g., from a previous interaction), this saves them a keystroke.

2. Pre‑set Visitor Email

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

Great for personalized outreach where you already have the user’s email address.

3. Custom Subject

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

The subject appears in your notification email, letting you route the inquiry instantly.

4. Predefined Message

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

Use a template to guide the user’s response or to capture structured data.

5. Custom Redirect After Submission

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

Instead of the default “Thank You” page, send them back to a page that fits your brand or conversion funnel.

All of these can be combined in a single URL, e.g.:

https://formcrab.com/f/abcd1234?name=Hugh&[email protected]&subject=Demo+Request&next=https://yoursite.com/thanks

Hook It Up to Your Own Systems with Webhooks

If you prefer to process the data programmatically (send to a CRM, Slack channel, or custom dashboard), Formcrab offers webhook POSTs. Set the webhook URL in your Formcrab dashboard, then expect a JSON payload like this:

{
  "name": "Hugh",
  "email": "[email protected]",
  "subject": "hello! there",
  "message": "hello! there",
  "submittedAt": "2026-03-12 10:20:08",
  "extra": {
    "key1": "value1",
    "key2": "value2"
  }
}
  • extra contains any additional query parameters you passed (e.g., utm_source, plan=pro).
  • submittedAt is in YYYY-MM-DD HH:MM:SS format, ready for logging.

Use this webhook to trigger Zapier actions, push to HubSpot, or store in a Google Sheet—your workflow, your rules.


Real‑World Use Cases

Scenario How Formcrab Helps
Freelance portfolio on Carrd Hide your email, collect project briefs, auto‑tag with subject=New+Project.
SaaS landing page with a free trial Pre‑fill the email from a paid ad link, redirect to a welcome tour after submission.
GitHub README or Twitter bio One short link (formcrab.com/f/abcd1234) that works everywhere, keeping your inbox clean.
Static blog built with Hugo or Jekyll No backend needed; the form lives on Formcrab, and you own the data via webhook.

Quick Checklist Before You Publish

  • [ ] Create a Formcrab account and generate your token.
  • [ ] Add the Formcrab URL (or a GET‑parameter version) to a Carrd button/link.
  • [ ] Test the form on desktop and mobile.
  • [ ] Configure your webhook if you need data in another system.
  • [ ] Set a custom next URL for a branded thank‑you experience.

Final Thoughts

Collecting client inquiries should be effortless, secure, and on‑brand. By pairing Carrd’s lightweight site builder with Formcrab’s private, anti‑spam form service, you get a professional contact solution without writing a single line of code or paying for extra hosting.

Give it a try today—replace that naked mailto: with a sleek Formcrab link, and watch the quality of your inbox (and your conversations) improve instantly.

Ready to stop exposing your email? Visit formcrab.com, create your private link, and start collecting leads the easy way.


Happy building!

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