Nov 24, 2020 12:00 PM
I am creating an automation that sends a reminder email if a task is not complete within a certain date. That being said, some users have multiple tasks to complete and receive an individual email for each record they’re attached to.
Is there a way I can have a reminder email sent with multiple records condensed into one message so the owner does not receive multiple emails?
Nov 25, 2020 12:27 PM
I don’t think there is. Zapier does however has a own zap called “digest” that does that trick.
Nov 25, 2020 01:02 PM
Hi @Olivia_Martin - have a look at this thread:
There isn’t a way to do this directly, but with a script you could get the details of multiple outstanding tasks and send these in one email.
Nov 25, 2020 09:46 PM
Do you have a user table that is linked to the tasks? You can use formula and conditional rollup fields to rollup the overdue tasks in the user record.
Then you need to use a trigger that includes a time component. For example, you could use a formula in the users table that checks the current hour and returns a value only at a specific hour.
Use the “when record meets conditions” trigger and include two conditions: one for the hour, and another that makes sure the roll up of overdue tasks isn’t empty.
Finally have the email action send the value of the rollup field.
Aug 27, 2021 10:34 AM
Yes - there is a way to do this - you would just use the find records instead of update record and choose records plural - then pick list or grid and the values you wish to add to the output.
Sep 09, 2021 12:35 AM
Hi there,
I guess that you want to share an email in which the content will include the all uncompleted task in a message right?
My recommendation is to develop a function field which tracks the un competed tasks. Then create a field in which you track the deadline, ideally by comparing it with today().
So in automation the trigger will be like “when deadline is above…” then send email to with “the message you want”
Does it help you?
May 29, 2024 10:31 AM
Did you ever find a fix for this? I think I have a found solution that might be simple and align with your goal.