Search code examples
azureazure-functionsazure-logic-appsazure-blob-storageblobstorage

Dynamically send blobs from azure storage account to email using azure logic apps


I have files getting stored in my Azure Blob storage account regularly. I want to send these blob file contents as attachments via email. I have established a workflow using Azure Logic Apps.

Here's the workflow:

Here's the workflow

I am able to send the blob file, but I need to specify the name of the file always. Is there any way I can get all the file contents dynamically without having to specify the name manually?


Solution

  • Just add Get Blob Metadata using path action to get the name of your file:

    enter image description here