Is it possible to send a weekly digest of all records created within that week? If so, how?
I was playing around with the automation, but I really don’t see the trigger I am looking for.
I am looking for FREE solutions, thanks!
Is it possible to send a weekly digest of all records created within that week? If so, how?
I was playing around with the automation, but I really don’t see the trigger I am looking for.
I am looking for FREE solutions, thanks!
To address possible confusion, this request can be interpreted in three ways:
{Created Time} is within the past week
IF(
DATETIME_FORMAT(CREATED_TIME(), "YYYYWW") = DATETIME_FORMAT(TODAY(), "YYYYWW"),
"true",
"false"
)
IF(
DATETIME_FORMAT(CREATED_TIME(), "YYYYWW") = DATETIME_FORMAT(TODAY(), "YYYYWW")-1,
"true",
"false"
)
For any of the above interpretations, you’d set the Automation to run at a scheduled time each week. Add a “Find records” step that filters records by the relevant View.
To address possible confusion, this request can be interpreted in three ways:
{Created Time} is within the past week
IF(
DATETIME_FORMAT(CREATED_TIME(), "YYYYWW") = DATETIME_FORMAT(TODAY(), "YYYYWW"),
"true",
"false"
)
IF(
DATETIME_FORMAT(CREATED_TIME(), "YYYYWW") = DATETIME_FORMAT(TODAY(), "YYYYWW")-1,
"true",
"false"
)
For any of the above interpretations, you’d set the Automation to run at a scheduled time each week. Add a “Find records” step that filters records by the relevant View.
Thanks, I used the first one and it worked like a charm! After thinking about it, I skipped the email part as it was an unnecessary step.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.