Hi,
I have a Power Automate flow that triggers when a new email arrives from customer. The next action is to send an email to a PIC, where its content must include the attachments sent by customer.
Here are the flow processes:
1) Initialize array variable "colAttachments"
2) Filter array to include only relevant attachments:
3) Apply to each Filter Array output:
json(concat('{
"Name": "', items('Apply_to_each')?['name'], '",
"ContentBytes": "', outputs('Get_Attachment_(V2)')?['body/contentBytes'], '"
}'))
4) Send email to PIC
So when the PIC receives email, she cannot open the attachment:
Please help me figure out the solution for this.
Thank you.