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:
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 }];