I’ve got this scenario to watch when emails come in a folder send out daily updates. Is there a way to have it send out an email when or on a certain day no new emails have been added to the folder stating like; “No new daily update as no new emails have been added to the folder”
blueprint (14).json (47.7 KB)
What is the output bundle of the Aggregator when: (1) there are updates, and (2) when there are no updates?
Could you adjust the Text Aggregator such that the output is a zero-length string when there are no updates? If yes, you just need a router, a clone of the Outlook module, and two filters.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!
Currently the output is just this so that I get an email with all the summaries and URLs from the email in the folder.
In that case you will have to aggregate to an array first instead of directly using the Text Aggregator there.
Use a router and two filters:
- check if the array length is zero
- check if the array length is greater than zero
If array length is greater than zero, Iterate and Text Aggregator, before sending the email.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!