LeadSimple Blog

Peter and the Wolf Webinar: 3 More Zaps in 30 Minutes | LeadSimple

Written by Aimee Berkompas | Mar 14, 2024 5:00:00 AM

Season #2 of Peter and the Wolf returns with another 3 Zaps in 30 Minutes webinar! 

‍

In this episode, Peter and Wolf walked through the following Zaps:

  • Pulling new clients from LeadSimple into Retently
  • Creating an issue in Ninety.io when you receive a new Google review
  • Starting LeadSimple processes on a regular schedule using Zapier Scheduler
  • Sending your emails to ChatGPT to create a summary of your emails to yourself as a direct message in Slack
  • and more!

Watch the replay to learn how to streamline your processes with Zapier, manage your Google reviews with ease, and master your schedule.

‍

Not yet using LeadSimple Operations for your operational processes and workflows? Learn more and book a discovery call to take the logistical nightmare that is property management and transform it into a well-oiled machine.

‍

Looking for Wolf's code from his Zapier Scheduler app? Find it right here!πŸ‘‡

const formatDigits = digit => String(digit).padStart(2, "0");

const d = new Date();
d.setDate(1);
d.setHours(0);
d.setMinutes(0);
d.setSeconds(0);
d.setMonth(d.getMonth() + 1);
d.setDate(d.getDate() - 1);

const day = formatDigits(d.getDate());
const month = formatDigits(d.getMonth() + 1);
const year = d.getFullYear();
const lastOfMonth = `${day}/${month}/${year}`;

output = [{ lastOfMonth }];