I have a work storage account accessed through azure storage explorer which contains two blob containers. What would easiest way in setting up an email trigger to go to colleagues when files are dropped?
I have a work storage account accessed through azure storage explorer which contains two blob containers. What would easiest way in setting up an email trigger to go to colleagues when files are dropped?
You may opt Azure Logic App in this purpose
You could add When a blob is added or modified as the trigger to check the Container which you are interested. Add Send email as action to send email
The easiest and the ideal solution would be using an Azure Function: Azure Blob storage bindings for Azure Functions overview. Then to your function add an output binding to send an email through SendGrid: Azure Functions SendGrid bindings. Should be able to get all this done in like 30 minutes.
8 people are following this question.