Hi @WarrenBelz
Thanks for the info, i've had a look and it doesn't seem to be the same scenario i'm looking for. I've already setup a submit button that emails the results and attachments and then use patch to send the results to a sharepoint list and then Flow will move the attachments into the sharepoint list.
I have colImages which is the image collection and I have AttachmentControl-1.Attachments. Below is the code I have in the submit button but all I want to do is add all of the images from the camera into the colImages so that all of the attachments are together and can view anything uploaded or taken via the camera in a gallery.
ClearCollect(
colImages,
AddColumns(
RenameColumns(
'AttachmentControl-1'.Attachments,
"Value",
"ContentBytes"
),
"@odata.type",
""
),
{
Name: "Signature.jpg",
ContentBytes: 'Signature-1'.Image
}
);
Office365Outlook.SendEmailV2("email@domain.com" , 'Result-Job-Number'.Text , "Hi,<br><br>
Please see completed form below and attached photos<br><br>
Regards<br><br>
IT<br></br>",
{Attachments: colImages}
);
Patch(Portal, Defaults(Portal),
{