viperfx
viperfx

Reputation: 327

Notify email when Azure Storage table gets new entry

Is there an inbuilt way to notify an email when a new entry is added to the Table?

I am asking for anything programatically just within their own UI

Upvotes: 0

Views: 1044

Answers (3)

Sascha Gottfried
Sascha Gottfried

Reputation: 3329

The lastest Azure product updates covering event-driven applications suggest to adopt these application patterns to react to events published by Azure Storage. These docs/resources might help to explore the application pattern and current platform/framework support.

Azure Storage

CosmosDB

Upvotes: 0

viperfx
viperfx

Reputation: 327

Okay, so the easiest way to see the data is to use their desktop app

Use https://azure.microsoft.com/en-us/features/storage-explorer/

Upvotes: 0

Kevin Smith
Kevin Smith

Reputation: 14436

Not currently but you could put it on an Azure Storage Queue and process it to Table Storage and send an Email with Azure Functions.

Check out this page what is possible - https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings

Upvotes: 2

Related Questions