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
Create Email Triggers when Files Dropped to Blob Container
laubachm
1
Reputation point
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?
2 answers
Sort by: Most helpful
-
Manu Philip 18,561 Reputation points MVP
2021-07-09T19:00:29.18+00:00 -
Jaliya Udagedara 2,821 Reputation points MVP
2021-07-10T02:25:03.323+00:00 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.