I would like to use logicapps to automatically sort and save the attachments of received emails into blobs, separating them into file format mats.

NishimuraChinatsu-9854 756 Reputation points
2022-10-14T12:49:17.64+00:00

I would like to use logicapps to automatically sort and save the attachments of received emails into blobs, separating them into file format mats. (e.g. xlsm, xlsm, csv, etc.)

I understand how to save simple received email attachments in a blob, but how do I sort them by file?

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,996 questions
0 comments No comments
{count} votes

Accepted answer
  1. MayankBargali-MSFT 70,016 Reputation points
    2022-10-18T06:07:37.887+00:00

    @NishimuraChinatsu-9854 Thanks for reaching out. The better way to design your workflow will be as below. In the below workflow for the individual attachments, I am trying to get the extension string and creating different folders for different extensions, and it will add the files to only to that extension folder.

    251409-image.png

    Folder Path : /attachments/@{substring(items('For_each')?['name'],add(lastIndexOf(items('For_each')?['name'],'.'),1),sub(length(items('For_each')?['name']),add(lastIndexOf(items('For_each')?['name'],'.'),1)))}"

    For your reference attaching the code view and function reference document. You can update it as per your business needs. Feel free to get back to me if you have any queries or concerns.

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.

    0 comments No comments

0 additional answers

Sort by: Most helpful