The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I wanted to share what I figured out looking for a way to run an automation at a scheduled time.
First, create a helper table named Automation Trigger with 3 columns:
Name (type: Single line text)Run At (type: Date, with time field included)Record (t...
It’s because date is mutable. You’re modifying the same object (current) and assigning it to each job. You’d need to clone the current date when adding it to newJobs.
for (let current = jobDate; current <= end; current.setDate(current.getDate()+7)) {...
You could embed an Airtable view in your membership area in ClickFunnels.
In Airtable:
Click on Share view > Embed this view on your site
Copy the Embed code to clipboard
In ClickFunnels:
Open the lesson editor
Add Custom JS/HTML element
Click o...
Thank you so much @Justin_Barrett for your suggestion! Indeed, using NOW() eliminates the need of an external system to schedule an automation.
Although, I noticed that the output of NOW() isn’t updated every minute, but rather every 5 minutes or so....