🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Cal.com + Gmail: warm prospects before every call

Lisa Granqvist Partner Workflow Automation Expert

Your calendar gets booked… and then the prospect shows up cold. No context, no prep, and sometimes no-show silence that wastes a clean 30 minutes you could’ve spent selling or servicing.

If you’re a consultant running discovery calls, a sales lead trying to lift show rates, or a founder juggling back-to-back demos, this Cal.com Gmail emails automation warms people up automatically so the call starts in motion, not in small talk.

This workflow watches for new Cal.com bookings, checks how far away the meeting is, then schedules a short email sequence through Gmail. You’ll see what it does, what you need, and where teams usually tweak it to match their voice.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Cal.com + Gmail: warm prospects before every call

The Problem: Booked calls that still feel “unbooked”

A meeting confirmation isn’t the same thing as commitment. People book quickly, then forget why they booked, what they should bring, or what will happen on the call. Meanwhile you’re guessing: Are they a fit? Do they understand the agenda? Will they even show? If you try to fix this manually, you end up sending one-off “prep” emails at random times, usually right before the meeting, usually while you’re already slammed. And honestly, the inconsistency is what kills results. Some prospects get nurtured. Others don’t.

It adds up fast. Here’s where it breaks down in the real world:

  • You lose about 10 minutes per booking rewriting “quick prep” emails, then you do it again tomorrow.
  • No-shows sting more when they’re preventable, especially on high-intent consult calls.
  • Prospects arrive without the basics, so the first 10 minutes becomes calendar therapy instead of progress.
  • Your follow-up cadence changes based on mood and workload, which means pipeline quality gets weirdly unpredictable.

The Solution: Cal.com-triggered warm-up emails in Gmail

This workflow turns every Cal.com booking into a timed “pre-call runway.” When someone books, n8n captures the prospect details, sanity-checks the email (so you don’t nurture obvious personal addresses if you don’t want to), and calculates how many days remain until the meeting. Then it routes the prospect into the right warm-up sequence based on lead time. If the meeting is soon, they get a tight set of emails that clarify the agenda and what to prepare. If the meeting is further out (8+ days), the cadence stretches out with natural spacing using Wait nodes, so you stay top-of-mind without sounding like a bot. The final output is simple: a few well-timed Gmail sends that make your calls sharper and your prospects more ready.

The workflow starts the moment a booking hits Cal.com. It decides which sequence to use by computing days remaining, then schedules and sends a series of pre-written warm-up messages via Gmail. Those waits are the quiet hero here, because timing is the difference between “helpful” and “spammy.”

What You Get: Automation vs. Results

Example: What This Looks Like

Say you book 12 Cal.com calls a week. Manually sending three warm-up emails (prep note, value teaser, insight nudge) takes maybe 5 minutes each time you write, tweak, and double-check details, which is about 15 minutes per prospect, or roughly 3 hours weekly. With this automation, your “work” is basically zero after setup: the booking triggers instantly, then n8n schedules the sequence in the background with Wait nodes. You get those 3 hours back, and the emails go out on time even when your day is chaos.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Cal.com to trigger automations from bookings
  • Gmail to send the warm-up email sequence
  • Cal.com API key (get it from Cal.com developer settings)

Skill level: Intermediate. You’ll mostly connect accounts and edit email copy, with light comfort around testing dates and waits.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A Cal.com booking kicks everything off. When a meeting is scheduled, the workflow receives the booking data and pulls out the prospect’s contact details you’ll use for the emails.

Prospect details are cleaned up and checked. It parses fields like name and email, then runs a simple check to confirm you’re dealing with a company email (useful if your offers are B2B and you don’t want to nurture personal inboxes).

Lead time decides the sequence. n8n computes how many days remain until the meeting, then a switch routes the prospect to the “short notice” path or the “8+ days” path. Same intent, different pacing.

Gmail sends the warm-up emails with natural spacing. Your prep email goes out, then a value teaser follows, then a background note and insight nudge. Wait nodes handle the timing so you don’t have to babysit it.

You can easily modify the email cadence to match your sales cycle based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Calendar Booking Trigger

This workflow starts when a new booking is created in Cal.com.

  1. Add the Calendar Booking Trigger node as the workflow trigger.
  2. Set Events to BOOKING_CREATED.
  3. Credential Required: Connect your calApi credentials.

Step 2: Connect Gmail for All Email Sends

Multiple Gmail nodes deliver the nurture sequence. Connect Gmail once and apply it across all email nodes.

  1. Open each Gmail node: Send Prep Email, Send Value Teaser, Send Background Note, Send Insight Nudge, Dispatch Prep Email, Send Value Teaser 8+, Send Background Note 8+, Send Insight Nudge 8+, and Dispatch Prep Email 8+.
  2. Credential Required: Connect your gmailOAuth2 credentials on each Gmail node.
  3. Confirm each Gmail node uses the attendee email field in Send To, e.g. {{ $('Compute Meeting Lead Time').item.json.attendee_email }}.

Because there are 9 Gmail nodes, connect the same Gmail credential to all of them to avoid partial delivery failures.

Step 3: Set Up Prospect Parsing and Lead-Time Logic

These nodes extract booking data, validate company email, and calculate days until the meeting to route the sequence.

  1. In Parse Prospect Details, keep the provided JavaScript that extracts attendee_email, company_name, and website_url from the Cal.com payload.
  2. Configure Verify Company Email to check {{ $json.is_company_email }} is true.
  3. In Compute Meeting Lead Time, keep the JavaScript that calculates days_until_meeting using {{ $('Parse Prospect Details').item.json.meeting_start_time }}.
  4. In Route by Days Remaining, confirm the switch rules use {{ $json.days_until_meeting }} with outputs 0–1 days, 2–7 days, and 8+ days, and Fallback Output set to none.

⚠️ Common Pitfall: If your Cal.com booking fields differ from attendees or responses['Company-Name'], update Parse Prospect Details to match your payload structure.

Step 4: Configure the Email Sequences and Delays

The workflow routes into three paths based on meeting lead time, then sends a timed sequence of emails with delays.

  1. For the 0–1 days path, verify Route by Days RemainingCompose Prep NoteSend Prep Email, where Compose Prep Note sets email to the long JavaScript template and Send Prep Email uses {{ $json.email }} for the message.
  2. For the 2–7 days path, confirm Route by Days RemainingSend Value TeaserDelay One Day ASend Background NoteDelay Additional DaySend Insight NudgeDelay One Day BCompose Prep Note BDispatch Prep Email.
  3. For the 8+ days path, confirm Route by Days RemainingSend Value Teaser 8+Delay One Day CSend Background Note 8+Delay Additional Day 8+Send Insight Nudge 8+Delay One Day DCompose Prep Note CDispatch Prep Email 8+.
  4. In each wait node, set the intended delay, such as Delay One Day B with Unit days and Amount 1, and Delay One Day D with Unit days and Amount 1.

The set nodes Compose Prep Note, Compose Prep Note B, and Compose Prep Note C share the same dynamic email template—if you customize one, replicate changes across all three to keep messaging consistent.

Step 5: Test and Activate Your Workflow

Run a controlled test to ensure the sequence routes correctly and all emails are delivered.

  1. Use Calendar Booking Trigger to send a test booking payload or run the workflow manually from the trigger node.
  2. Verify the output of Parse Prospect Details includes attendee_email, company_name, and meeting_start_time, and that Compute Meeting Lead Time outputs days_until_meeting.
  3. Confirm Route by Days Remaining sends the execution down the correct branch and that Gmail nodes show successful send logs.
  4. When satisfied, toggle the workflow to Active so it runs automatically on new bookings.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Cal.com credentials can expire or need specific permissions. If things break, check your Cal.com API key and booking webhook settings first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this Cal.com Gmail emails automation?

About 30 minutes if your Cal.com and Gmail accounts are ready.

Do I need coding skills to automate Cal.com booking warm-up emails?

No. You’ll connect Cal.com and Gmail, then edit the email text in a few nodes.

Is n8n free to use for this Cal.com Gmail emails workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in Gmail/Google Workspace costs if you’re sending from a paid business inbox.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this Cal.com Gmail emails workflow for different meeting types?

Yes, and you should. You can route by event type or duration, then swap the email copy in the “Compose Prep Note” and “Send Value Teaser” nodes so a discovery call gets different messaging than an onboarding call. Common tweaks include changing the Wait timing, adding a “bring this checklist” email, and skipping the sequence for existing customers.

Why is my Cal.com connection failing in this workflow?

Most of the time it’s an expired or wrong Cal.com API key. Regenerate the key, update it in n8n, then trigger a new test booking to confirm the Cal.com node fires. Also check that the booking trigger is pointed at the right event and workspace, because it’s easy to test on one event and go live on another. If failures happen only during busy periods, you may be hitting rate limits, so spacing or retries can help.

How many bookings can this Cal.com Gmail emails automation handle?

A lot, as long as your Gmail sending limits and n8n plan match your volume. On n8n Cloud, the practical ceiling is your monthly execution limit (Starter is fine for many small teams; higher tiers handle more). If you self-host, there’s no execution cap, but your server resources and Gmail daily send limits become the bottleneck. For most service businesses, this workflow comfortably handles dozens of bookings a day.

Is this Cal.com Gmail emails automation better than using Zapier or Make?

Often, yes. This sequence relies on timing control, branching, and wait states, and n8n handles that kind of logic cleanly without turning each “delay + send” into a pricey chain of steps. The self-host option is also a big deal if your booking volume grows and you want predictable costs. Zapier or Make can still be fine for a basic single reminder email. If you’re unsure, Talk to an automation expert and pick the simplest tool that meets the need.

You set the tone before the call, every time, without touching your inbox. The workflow handles the repetition so you can focus on the conversation that actually moves revenue.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal