How To Implement The Sales Call Messaging Sequence Using Zapier
This video will show you how to implement the sales call messaging sequence using Zapier.
Click here to install the Zapier template in your Zapier account
Due to Zapier's limitation preventing the creation of templates with code blocks, the code block step had to be removed from the Zap.
Copy this code and place it in the code code block.
const callStartTime = inputData.callStartTime; let reminderDates = calculateReminderDates(callStartTime); return { reminderDates }; function calculateReminderDates(callStartDate) { let startDate = new Date(callStartDate); let reminders = { reminder24Hours: null, reminder15Minutes: null }; // If there's more than 27 hours to the call start date if ((startDate - new Date()) > 27 * 60 * 60 * 1000) { // 27 hours in milliseconds let reminder24Hours = new Date(startDate); reminder24Hours.setUTCHours(reminder24Hours.getUTCHours() - 24); reminders.reminder24Hours = reminder24Hours.toISOString(); } // Calculate 15 minutes before the call start date let reminder15Minutes = new Date(startDate); reminder15Minutes.setUTCMinutes(reminder15Minutes.getUTCMinutes() - 15); reminders.reminder15Minutes = reminder15Minutes.toISOString(); return reminders; }
It should look like this when you are done