Hello, I am facing a problem with setting up a 10-minute delay in Make. If anyone can help, it would be greatly appreciated.
I created two scenarios for this purpose, with the goal of delaying the sending of emails by 10 minutes. The first scenario starts with a “watch posts” from WordPress, followed by a “data store add/replace a record” and an HTTP module to link with the second scenario. The “data store add/replace a record” stores the next check date by adding a 10-minute delay using the metric {{formatDate(addMinutes(now; 10); "DD-MM-YYYY hh:mm")}}
.
The second scenario begins with a webhook that receives data from the first scenario. Then, a "data store search record" is used to search for the first record created in the first scenario, applying the filter “next check date later than or equal to now.” Finally, the email module is triggered to send the email after 10 minutes.
The issue encountered is that when the scenario reaches the "data store search record"module, it stops and doesn’t resume after the 10 minutes to send the email. The delay logic doesn’t seem to work correctly, and the scenario doesn’t restart after the 10-minute delay.