🔓 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

Gmail + Google Sheets, event reminders that stick

Lisa Granqvist Partner Workflow Automation Expert

You promote an event, people sign up… and then the admin spiral starts. Confirmation emails get missed, the Zoom link lives in three places, and your “final reminder” turns into a last-minute panic send.

This is where event managers feel it first. Marketers running webinars deal with the same mess. And if you’re an agency owner hosting client trainings, you already know how quickly “just one event” becomes constant follow-up. This event reminder automation keeps registrations organized and sends a consistent reminder sequence without you babysitting it.

You’ll see exactly how the workflow captures registrations, sends Gmail confirmations and timed reminders, and logs every registrant to Google Sheets so your list stays clean.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Gmail + Google Sheets, event reminders that stick

Why This Matters: Event no-shows and messy registration lists

Most attendance problems aren’t marketing problems. They’re follow-up problems. Someone registers, doesn’t get the calendar invite right away, and forgets. Or they find the confirmation email but can’t find the link on event day. Then you spend the morning replying to “Can you resend the access details?” while trying to host the thing you worked hard to fill. It’s draining, and honestly it’s avoidable. A simple, reliable reminder sequence plus a single source of truth for registrants changes everything.

It adds up fast. Here’s where it usually breaks down.

  • Registrations land in multiple places, so you end up reconciling lists by hand before every event.
  • Confirmation emails go out late (or not at all), which leads to confused attendees and support requests.
  • Reminder emails are inconsistent because someone has to remember to send them during a busy week.
  • You lose useful context after the event because sign-ups and email activity were never logged cleanly.

What You’ll Build: Gmail reminders + a Google Sheets registration log

This workflow gives you a dependable registration-to-reminder system that runs in the background. It starts when someone submits your registration form (through a webhook), then it fills in the event details you want included in every message. Next, it validates the registration so you’re not sending emails to bad entries or missing required fields. Once the registration looks good, it processes the data, sends a Gmail confirmation immediately, and logs that registrant into Google Sheets. After that, the workflow waits until specific milestones before your event and sends a week-prior email, a day-prior email, and a final two-hours-before reminder with the critical access details.

Everything follows the same rhythm. New sign-up comes in, Gmail confirms right away, and Google Sheets becomes your running roster. Then the timed reminders fire automatically, so you don’t rely on memory (or a sticky note) to protect attendance.

What You’re Building

Expected Results

Say you run one webinar each week with 80 registrants. Manually, you typically send 4 emails (confirmation, week prior, day prior, two-hour reminder), and each send takes about 15 minutes once you find the right list and double-check links, so that’s roughly 1 hour of work per event. With this workflow, the “work” is basically checking your form once and letting n8n run. The emails still go out on schedule, and your Google Sheets log stays updated automatically, which means you get that hour back every single week.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Gmail for sending confirmations and reminders
  • Google Sheets to store and track registrants
  • Registration form webhook (from your form tool’s webhook settings)

Skill level: Beginner. You’ll connect accounts, paste a webhook URL, and edit email templates.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A new registration comes in. The workflow begins with an incoming webhook from your registration form, so every sign-up arrives in n8n the moment it happens.

Event details are applied and the entry is checked. n8n sets the event name, date/time, location or access link, and any other fields you want reused across emails. Then an “if” validation step makes sure required details (like email address) are present before continuing.

Confirmation goes out, and the registrant is logged. After a short processing step (formatting fields, cleaning names, and preparing email content), Gmail sends the confirmation email immediately. In parallel, the workflow appends a new row to Google Sheets so you have a live roster.

Timed reminders send automatically. n8n waits until the week-prior milestone, then sends the next Gmail message, waits again until the day before, and finally waits until about two hours before the event for the “don’t miss this” reminder with the key link/details.

You can easily modify the reminder timing or email copy to match your event style. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Webhook Trigger

This workflow starts when a registration is posted to a webhook endpoint.

  1. Add a Incoming Registration Hook node as your trigger.
  2. Set HTTP Method to POST.
  3. Set Path to event-registration.
  4. Save the node to generate the webhook URL and use it in your registration form or app.

Step 2: Connect Google Sheets

Registrations are logged to a spreadsheet for tracking and reporting.

  1. Add the Log Registration Row node.
  2. Set Resource to sheet and Operation to appendRow.
  3. Set Sheet Name to Event Registrations.
  4. Set Document ID to [YOUR_ID].
  5. Map the row values as shown: {{ $json.registrationId }}, {{ $json.name }}, {{ $json.email }}, {{ $json.company }}, {{ $json.eventDetails.eventTitle }}, {{ $json.registeredAt }}, {{ $json.status }}.
  6. Credential Required: Connect your Google Sheets credentials.

Step 3: Set Up Registration Processing

This step sets event details, validates submissions, and creates reminder scheduling data.

  1. Configure Configure Event Details with event metadata. Set maxCapacity to 100, eventDate to 2025-07-25T14:00:00Z, and eventEndDate to 2025-07-25T16:00:00Z.
  2. In Registration Validation, add conditions for required fields: {{ $json.email }} is not empty, {{ $json.name }} is not empty, and {{ $json.email }} contains @.
  3. In Registration Processing, paste the provided JavaScript to generate registrationId, reminder dates, calendar metadata, and access credentials.
  4. Connect the flow: Configure Event DetailsRegistration ValidationRegistration Processing.

⚠️ Common Pitfall: The email templates reference eventTitle, eventLocation, and organizerEmail. Add these fields to Configure Event Details so your emails and calendar links render correctly.

Step 4: Configure Output & Reminder Actions

This workflow sends confirmation and multiple reminders, then logs the registration. Reminder actions are time-delayed.

  1. Set up Dispatch Confirmation Email with Send To as {{ $json.email }}, Subject as ✅ Confirmation d'inscription - {{ $json.eventDetails.eventTitle }}, and enable Content Type as html.
  2. Configure Delay Until Week Prior with Unit days, Amount 7, and Resume set to {{ $json.reminderDates.weekBefore }}.
  3. Configure Send Week Prior Notice with Send To {{ $json.email }} and Subject 📅 Rappel - {{ $json.eventDetails.eventTitle }} dans 7 jours.
  4. Configure Delay Until Day Prior with Unit days, Amount 6, and Resume {{ $json.reminderDates.dayBefore }}.
  5. Configure Send Day-Prior Notice with Send To {{ $json.email }} and Subject 🚨 Demain - {{ $json.eventDetails.eventTitle }} - Dernières infos.
  6. Configure Delay Until Two Hours with Unit hours, Amount 22, and Resume {{ $json.reminderDates.twoHoursBefore }}.
  7. Configure Send Final Reminder Email with Send To {{ $json.email }} and Subject 🏁 MAINTENANT - {{ $json.eventDetails.eventTitle }} commence dans 2h.
  8. Registration Processing outputs to both Dispatch Confirmation Email and Log Registration Row in parallel.
  9. Credential Required: Connect your Gmail credentials to Dispatch Confirmation Email, Send Week Prior Notice, Send Day-Prior Notice, and Send Final Reminder Email.

⚠️ Common Pitfall: If Gmail credentials are missing, none of the reminders will send. Ensure every Gmail node is authenticated.

Step 5: Test and Activate Your Workflow

Validate the full reminder sequence before enabling production use.

  1. Use the Incoming Registration Hook test URL to send a sample payload containing name and email.
  2. Confirm Registration Validation passes and Registration Processing outputs enriched fields like registrationId and reminderDates.
  3. Verify the confirmation email arrives and a new row is appended by Log Registration Row.
  4. Check that the wait nodes are scheduled using the computed resume timestamps.
  5. When successful, switch the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Gmail credentials can expire or need specific permissions. If things break, check the Gmail connection inside n8n’s Credentials list 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.

Quick Answers

What’s the setup time for this event reminder automation?

About 30 minutes if your form and Gmail are ready.

Is coding required for this event reminder automation?

No. You’ll mostly connect accounts and edit a few fields like event name, dates, and email copy.

Is n8n free to use for this event reminder automation 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 and Google Sheets usage (usually no extra cost).

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 modify this event reminder automation workflow for different use cases?

Yes, and you should. You can change the “Configure Event Details” step to support multiple event types, then swap the Gmail templates to match each format. Common tweaks include different timing (like D-3 instead of D-7), separate reminder paths for “online” vs “in-person,” and logging extra columns in the Google Sheets row (like company, role, or ticket type).

Why is my Gmail connection failing in this workflow?

Most of the time it’s expired authorization in n8n. Reconnect your Gmail credential, then rerun a single test registration to confirm it sends. If it still fails, check that the Gmail account is allowed to send from the “From” address you’re using and that you haven’t hit daily send limits.

What volume can this event reminder automation workflow process?

A typical small team can run hundreds of registrations per event without issues, as long as your email sending limits support it. On n8n Cloud, capacity depends on your plan’s monthly executions; on self-hosted n8n there’s no execution cap, but your server and Gmail rate limits will be the real bottleneck. If you’re expecting thousands of sign-ups, you’ll want batching, a dedicated sending service, and a slightly more defensive “retry on failure” setup.

Is this event reminder automation better than using Zapier or Make?

Often, yes. This workflow uses multiple waits and branching logic, and n8n handles that kind of sequence cleanly without turning it into a spaghetti mess. You also get the option to self-host, which matters when reminders turn into lots of executions over time. Zapier or Make can still be fine for a simple confirmation email plus a single reminder, but multi-touch sequences get pricey and harder to maintain. If you want help picking the right stack for your volume, Talk to an automation expert.

Once this is live, your event follow-up stops depending on memory and “someone on the team.” The workflow handles the repetitive parts so you can focus on the session itself.

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