Azure Logic app : How to Send an Email with one or more attachments after getting the content from Blob storage?

前端 未结 1 979
小蘑菇
小蘑菇 2020-12-20 04:04

I want to read blob contents using azure logic app get blob contents connector and send that contents as attachment via email using azure logic app

相关标签:
1条回答
  • 2020-12-20 04:32

    You could add When a blob is added or modified (properties only) (Preview) as trigger to focus on the Container which you want to listen to.

    Then add Get blob content as action to get the blob content.

    Finally add Send email as action to sent email to users. Here I choose Gmail and as you have add Get blob content action, so in Attachments Content column you could insert File Content which is equal to @{base64(body('Get_blob_content'))}.

    If you want to add one or more attachment, you only need to click Add new item in Send email action.

    Here is designer screenshot and code view screenshot.


    For attaching a dynamic number of files to an email, there is a toggle in the UI to use an input array instead

    which changes the UI to something like this

    The input here expects an array of items in this format

    {
      "Name": "<NameOfFile>",
      "ContentBytes": "<Base64OfFileContent>"
    }
    
    0 讨论(0)
提交回复
热议问题