1
votes

I have an Azure Logic app that dynamically gets Blob contents from my azure storage account and sends an email with the attachment. I want to set a schedule for my logic app to run once a week. Any idea how I can achieve this?

Here's my current workflow:

Here's my current workflow

2

2 Answers

1
votes

I think you are looking for Recurrence trigger's. It's possible to set something like time triggers from regular Azure Functions.

Here's instruction how to create one in your logic app. https://docs.microsoft.com/en-us/azure/connectors/connectors-native-recurrence

2
votes

It depends on what you are trying to do. If you want to get an email every time your blob is updated, your current Logic App is the way to go. If you change the trigger to a Reccurrence trigger as Rob Ert stated than you could potentially lose updates (the blob could have many updates in a week). If you don't care about the individual updates, then Reccurrence is the proper trigger.