Hi
I've two array varibles in flow one for the sharepoint list images and one for sharepoint list attachments
But I'm not been able to pass these variable in the attachment column of "send an email v2"
Only one variable is accepting
Could anyone have a better idea on how to handle the situation
Hi thanks for the advice
worked perfectly fine in my condition
json(concat('[',join(variables('AttachValue'),','),',',join(variables('ImageV'),','),']'))
Hi @Anonymous ,
Unfortunately we can only use one array in email attachments, you can try to append all files to the same array. Or you can try to combine your two arrays in the following way.
json(concat('[',join(variables('A'),','),',',join(variables('B'),','),']'))
Best Regards,
Dezhi