I have a workflow that has a scheduled trigger node that runs at 7 am every day and if it finds a specific file in a folder it will send an email with the attachment.
Sometimes the workflow does not run so I thought ooh lets add an interval every 15 mins incase the file is not saved to the folder by 7am. However, with the interval set it sends the email every 15 minutes.
What would be the best way to say from 7am, search for the file every 15 mins, if you find it, send the email then do not send again until the next day
Thanks
You have to create a way of verifying that the email was already sent.
Here are a few ideas:
After the email is sent, change the filename to add an underline at the end of it. In your workflow you filter out all files that end with an underline, like this: Screeshot1.png β Send to email Screeshot1_.png β Donβt send
Use the file name as the email title, then check in your sent emails if that file has already been sent.
Register each file in a Google Sheets or even a database. Then you can check if it was already sent.
If my reply answers your question, please remember to mark it as a solution.