How to use Make.com for Landscapers

You spend hours manually checking the forecast, constantly messaging clients to reshuffle the calendar every time it rains.

💡 Why This Actually Matters

There's nothing quite like waking up to a sudden torrential downpour and realizing you have a dozen outdoor jobs scheduled for the day. You end up spending your entire morning frantically dialing clients, apologizing endlessly, and trying to manually reshuffle everyone's appointments on a messy Google Calendar.

Make.com completely removes that headache by acting as your proactive dispatcher. It taps directly into real-time weather APIs, and if it sees foul weather rolling in tomorrow, it automatically scans your schedule, identifies the affected jobs, and texts your clients directly to offer a clean link to effortlessly reschedule.

The Blueprint

  • ☁️ Trigger: Weather API forecasts heavy rain for tomorrow.
  • 📅 Action: Search Google Calendar for tomorrow's outdoor landscaping jobs.
  • 📱 Action: Automatically send a Twilio SMS to affected clients offering a link to reschedule.

The Weather-Aware Scheduler

Architecture Map

This is the high-level structural flow of your automation. Build this sequence in Make.com:

Weather API (Rain > 60%) -> Google Calendar (Find Events) -> Twilio (Send SMS)

🛠️ Actionable Toolkit: Setup Guide

Follow these exact steps to implement this blueprint in Make.com:

1

Create a Make.com scenario starting with a Weather API module (like OpenWeatherMap).

2

Set up a filter between the Weather API and Google Calendar modules, pasting the exact condition below to only trigger when rain probability is > 60%.

Power Snippet
{{ if( 1.daily[1].pop > 0.60 & 1.daily[1].weather[0].main = "Rain"; true; false ) }}
3

Connect your Google Calendar to search for events tagged as 'Outdoor' for tomorrow.

4

Add the Twilio module to SMS the clients found in the calendar search with a reschedule link.