Planning a private gathering—whether it’s a birthday party, a small conference, or an invite‑only workshop—usually means figuring out how guests will RSVP without exposing your personal email address to the whole internet. formcrab.com solves that problem with a single, private link that collects messages directly to your inbox, stays hidden from web scrapers, and needs no code or hosting on your part.
Below you’ll find a step‑by‑step guide to creating a guest registration link, customizing it for your event, and handling the responses in a clean, spam‑free way.
Why Use a FormCrab Guest Registration Link?
| Feature | Benefit |
|---|---|
| Receive Messages, Hide Your Email | Your raw email never appears on the page, protecting you from spam and bots. |
| No Code Required | One URL is all you need—no HTML, CSS, or server setup. |
| Anti‑Spam Protection | Built‑in captcha‑free filtering keeps junk out of your inbox. |
| Perfect for Readmes, Bios, Blogs | Use the link anywhere (GitHub README, Twitter bio, static site) without breaking the layout. |
| Customizable GET Parameters | Pre‑fill name, email, subject, message, or set a redirect after submission. |
| Webhook Support | Forward form data to any endpoint in JSON format. |
| Zero Hosting Cost | FormCrab hosts the landing page, the form, and the backend for you. |
1. Create Your Private FormCrab Link
- Sign up (or log in) at formcrab.com.
- Click “Create New Form” and give it a meaningful name like “Private Event RSVP”.
- After saving, you’ll receive a unique token URL in the format:
https://formcrab.com/f/your-unique-token
That URL is your private guest registration link. Keep it secret—only share it with people you want to invite.
2. Share the Link Anywhere
You can embed the link as a simple anchor tag in any markdown‑compatible place:
[RSVP for the Celebration](https://formcrab.com/f/your-unique-token){:target="_blank"}
Tip: Using the target="_blank" attribute (or the target="_blank" HTML inside the markdown) opens the form in a new tab, keeping your event page still visible.
3. Customize the Guest Experience with GET Parameters
FormCrab lets you pre‑populate fields or control the post‑submission flow by adding query strings to the link. Replace your-unique-token with the token you received.
| Parameter | What it does | Example |
|---|---|---|
name |
Auto‑fills the Name field. | ?name=Hugh |
email |
Auto‑fills the Email field. | ?email=guest%40example.com |
subject |
Sets a default Subject (appears in your email notifications). | ?subject=Event+RSVP |
message |
Inserts a template Message (great for prompts). | ?message=I+am+excited+to+attend! |
next |
Overrides the default “Thank You” page with your own URL. | ?next=https%3A%2F%2Fmywebsite.com%2Fthanks |
Example Links
| Goal | Anchor Text | Full Link |
|---|---|---|
| Auto‑fill the guest’s name | RSVP as Hugh | <a href="https://formcrab.com/f/your-unique-token?name=Hugh" target="_blank">RSVP as Hugh</a> |
| Pre‑set the guest’s email (when you already have it) | Confirm Your Email | <a href="https://formcrab.com/f/your-unique-token?email=guest%40example.com" target="_blank">Confirm Your Email</a> |
| Classify the submission with a subject | Send RSVP | <a href="https://formcrab.com/f/your-unique-token?subject=Birthday+RSVP" target="_blank">Send RSVP</a> |
| Provide a ready‑made message | Request a Menu Sample | <a href="https://formcrab.com/f/your-unique-token?message=Please+send+the+menu+options" target="_blank">Request a Menu Sample</a> |
| Redirect to a custom “Thank You” page | Finish & Return | <a href="https://formcrab.com/f/your-unique-token?next=https%3A%2F%2Fmywebsite.com%2Fthank-you" target="_blank">Finish & Return</a> |
All links can be placed in markdown files, email signatures, or social media bios.
4. Capture Submissions via Webhook (Optional)
If you prefer to process responses programmatically (e.g., add guests to a spreadsheet, trigger a Slack notification, or call a custom API), set up a webhook in your FormCrab dashboard:
- Go to Form Settings → Webhooks.
- Add your endpoint URL (e.g.,
https://myapp.com/formcrab/webhook). - Save.
When a guest submits the form, FormCrab will POST a JSON payload to your endpoint with this structure:
{
"name": "Hugh",
"email": "[email protected]",
"subject": "hello! there",
"message": "hello! there",
"submittedAt": "2026-03-12 10:20:08",
"extra": {
"key1": "value1",
"key2": "value2"
}
}
You can add any extra data you need by including hidden fields in the form (via the url) – they will appear under the extra object.
5. Test Before You Send
- Open the link in an incognito window.
- Fill out the form (or use a pre‑filled link) and submit.
- Verify that you receive a notification email and/or that your webhook receives the JSON payload.
- Confirm that the redirect works as expected if you used the
nextparameter.
A quick test saves you from surprises on the day of the event.
6. Best Practices for Private Events
- Never post a raw email address on public pages. Use the FormCrab link instead.
- Rotate your token after the event is over to prevent future spam.
- Add a clear call‑to‑action in your invitation wording, e.g., “Click the button below to RSVP—your email stays private!”
7. Recap
| Step | Action |
|---|---|
| 1 | Create a form on formcrab.com and obtain your private URL. |
| 2 | Share the link where your invitees can see it (README, bio, landing page). |
| 3 | Optionally enrich the URL with GET parameters to save guests time. |
| 4 | (Optional) Connect a webhook for automated processing. |
| 5 | Test, then send the final invitation. |
| 6 | Collect clean, spam‑free RSVPs directly in your inbox. |
With just a single link, you’ve eliminated the need for a custom form, avoided exposing your email to bots, and kept the whole process simple enough for anyone to use—no HTML, no hosting fees, and no code required.
Ready to power your next private gathering? Visit formcrab.com, create your private guest registration link, and let the invitations roll in safely. 🎉