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?
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,202 questions
2 answers
Sort by: Most helpful
-
Manu Philip 20,206 Reputation points MVP Volunteer Moderator
2021-07-09T19:00:29.18+00:00 -
Jaliya Udagedara 2,836 Reputation points MVP Volunteer Moderator
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.