send an email only once a day
hello, i need some help, i created a script to send email with two conditions, but i get email every few munites, how do i get email only once when my conditions are true
thank you
4 replies
-
for more precision, it is not a button but a trigger
-
Maybe with a third condition(yes/no field) once the mail is send the third condition becomes false (or true).
-
I tried but couldn't change data with a non-clickable trigger
-
If you need to schedule a record/action to be completed daily, you can trigger this from Integromat.
I would create a table with a single record with a checkbox field, we will call it "ActionEmail" for the purpose of this example.
Add an on-update trigger to ActionEmail with the formula
if ActionEmail = true then
sendEmail({ YOUR EMAIL HERE});
ActionEmail := false;
end
Then in integromat, every day you can set the ActionEmail checkbox to true on that particular record, at a time you specify.
Give me a shout if you want some more information on this!
Content aside
- 3 yrs agoLast active
- 4Replies
- 458Views