Skip to main content

Send Google Calendar appointment reminder SMS with RCSZilla

Workflow preview

Workflow preview
100%
Send Google Calendar appointment reminder SMS with RCSZilla preview
Open on n8n.io

1. Workflow Overview

Description Send free SMS appointment reminders from Google Calendar with n8n and RCSZilla. This workflow turns Google Calendar into a simple appointment reminder system for opted in customers. n8n...

Best for

  • Support Chatbot automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.scheduletrigger, n8n-nodes-base.googlecalendar, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-rcszilla.rcszilla

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Five Quantum Bits.

Original n8n.io source

1.1 Workflow description

Title
Send Google Calendar appointment reminder SMS with RCSZilla
Workflow name
Send Google Calendar appointment reminder SMS with RCSZilla

Description

Send free SMS appointment reminders from Google Calendar with n8n and RCSZilla.

This workflow turns Google Calendar into a simple appointment reminder system for opted-in customers. n8n checks tomorrow's events, reads the customer phone number and SMS consent from the calendar event description, prepares a short reminder message, and queues the SMS through RCSZilla.

RCSZilla lets you use your own Android phone and SIM card as the SMS gateway, so you do not need a separate SMS API subscription just to send basic appointment reminders. The workflow is free to run in n8n, and RCSZilla supports device-based sending through your own mobile network. Your mobile carrier plan, country, and message volume can still affect real-world SMS costs, so check your plan before sending production traffic.

Why This Workflow Is Useful

Many appointment-based businesses need a practical SMS reminder service, but do not want to start with a paid SMS provider such as Twilio just to reduce no-shows. This template gives you a direct, phone-based setup:

  • Google Calendar stores the appointment.
  • n8n handles the automation logic.
  • RCSZilla queues the SMS.
  • Your connected Android device sends the message through its SIM/mobile plan.

This is a good fit for salons, clinics, dentists, consultants, repair shops, real estate viewings, local agencies, auto service businesses, and other teams that already manage bookings in Google Calendar.

How It Works

1. Daily Schedule

The workflow runs once per day at 09:00. You can change the Schedule Trigger if your business sends reminders earlier, later, or on the same day as the appointment.

2. Google Calendar Lookup

The Google Calendar node fetches tomorrow's events from the selected calendar. It only requests the fields needed for the reminder: event ID, title, description, start/end time, and location.

3. Appointment Data Parsing

The Code node reads the event title, description, and location. It looks for:

  • Phone: or a phone-like number
  • SMS consent: yes
  • optional customer name
  • optional location

If the event has no phone number, no positive SMS consent, or an opt-out phrase, the workflow does not send a message.

4. Consent Gate

The IF node separates eligible reminders from skipped events. This makes the workflow safer to test because events without consent are routed away from the sending step.

5. SMS Queue With RCSZilla

Eligible reminders are sent to the RCSZilla node using the SMS channel. RCSZilla then queues the message for the connected device that acts as your SMS/RCS gateway.

6. Skipped Reminder Summary

Skipped events go to a summary node so you can inspect why a reminder was not sent. During setup, this helps you fix calendar descriptions before activating the workflow.

RCSZilla Features Used Here

This template uses RCSZilla as a phone-based messaging gateway for n8n:

  • Android device sending: connect your own Android phone and SIM card.
  • API access: generate an API key in RCSZilla and use it from n8n.
  • SMS channel: queue appointment reminders through the RCSZilla node.
  • Device-first setup: send through your own mobile network instead of starting with a paid SMS API provider.
  • Optional cloud sending: RCSZilla also documents optional credit-based cloud provider routing for users who do not want to send from a phone.

RCSZilla setup guide: https://docs.rcszilla.com/?page=get_started

Requirements

  • n8n Cloud or self-hosted n8n.
  • RCSZilla account and API token.
  • Android device connected to RCSZilla and able to send SMS messages.
  • Active SIM/mobile plan for the device that will act as the SMS gateway.
  • Community node package: n8n-nodes-rcszilla.
  • Google Calendar OAuth credential in n8n.
  • Google Calendar events that include a customer phone number and SMS consent in the description.

Setup Instructions

  1. Install the RCSZilla community node in n8n: n8n-nodes-rcszilla.
  2. Import the workflow JSON: Google Calendar appointment reminder SMS n8n - RCSZilla.json.
  3. Create and assign the Google Calendar OAuth credential to the Google Calendar node.
  4. Create and assign the RCSZilla API credential to the RCSZilla node.
  5. Connect the Android device that will send SMS messages through RCSZilla. If you have not connected a device yet, follow the RCSZilla getting started guide: https://docs.rcszilla.com/?page=get_started
  6. In the Google Calendar node, choose the calendar that stores appointments.
  7. Add this format to appointment event descriptions:
Name: Maria
Phone: +40700000000
SMS consent: yes
  1. Run the workflow manually with one internal test appointment.
  2. Check the skipped summary output. If a reminder is skipped, confirm the event has a valid phone number and SMS consent: yes.
  3. Activate the workflow when testing is complete.

Example SMS

Hi Maria, reminder: Dental cleaning is scheduled for Thu, May 21, 10:00 AM at Main Street Clinic. Reply STOP to opt out.

Compliance And Consent

This workflow is designed for consent-based appointment reminders, not unsolicited marketing.

Only send SMS reminders to customers who have clearly agreed to receive appointment messages. Keep consent records in your booking process, respect opt-outs, follow quiet hours, and check local SMS rules for every region where you send messages.

The workflow requires SMS consent: yes before sending and includes this opt-out text in the message:

Reply STOP to opt out.

If your appointments involve medical, legal, financial, or other sensitive information, keep event titles and SMS wording generic.

Customization

  • Change the Schedule Trigger time to match your reminder policy.
  • Change the Google Calendar time window if you want same-day reminders instead of next-day reminders.
  • Edit the Code node message template to match your brand voice.
  • Keep appointment titles generic if customers should not receive sensitive details by SMS.
  • Change the RCSZilla channel later if your RCSZilla setup supports another channel for your use case.
  • Add delivery monitoring later by using RCSZilla queue/status features.

Troubleshooting

  • No events returned: confirm the selected calendar and the tomorrow time window.
  • Event is skipped: add Phone: and SMS consent: yes to the event description.
  • Google Calendar credential fails: for self-hosted n8n, use a public HTTPS domain for the OAuth redirect URL.
  • RCSZilla fails: confirm the API credential, connected device status, SIM status, and phone number country code.
  • Message is too specific: make the calendar event title generic or edit the Code node message template.
  • Reminders send at the wrong time: check the n8n instance timezone and the Schedule Trigger settings.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Workflow overview

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Setup guide

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Calendar event format

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Note - Daily trigger

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Note - Read appointments

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Note - Prepare reminder

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Note - Consent gate

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Note - Queue SMS

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Note - Skipped reminders

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Every day at 09:00

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.3

Block 11 - Get tomorrow's appointments

Type / Role
n8n-nodes-base.googleCalendar - googleCalendar
Config choices
Version 1.3

Block 12 - Prepare reminder SMS

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 13 - Has phone and SMS consent?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 1

Block 14 - Queue appointment SMS with RCSZilla

Type / Role
n8n-nodes-rcszilla.rcsZilla - rcsZilla
Config choices
Version 1

Block 15 - Skipped reminder summary

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

3. Summary Table

Workflow Send Google Calendar appointment reminder SMS with RCSZilla
Complexity advanced
Nodes 15
Categories Support Chatbot
Author Five Quantum Bits
Published 09 May 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15577/15577.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Send Google Calendar appointment reminder SMS with RCSZilla do?

Description Send free SMS appointment reminders from Google Calendar with n8n and RCSZilla. This workflow turns Google Calendar into a simple appointment reminder system for opted in customers. n8n...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Support Chatbot use case.