Hi all,
I have the following scenario: A user uploads a new shipping voyage in my powerapp and is required to upload at least one attachment.
In the gallery, which shows all voyages which were uploaded, I can select an item from the gallery and view it. I have a screen called View Attachments which looks as follows.

It contains a form and the form connects to my sharepoint list and the only datacard I show is the attachments datacard which will then show the current attachment for the selected gallery item.
What I would like the Button to do is that on select, it will send the attachment currently linked to this gallery item. I have tried the following code but the only thing it does is send an email without attachments:
Office365Outlook.SendEmailV2("fake@emailaddress","Attachment Test","Please see attachments ", {Attachtments: AddColumns( RenameColumns(ThisItem.Attachments,"Value","ContentBytes"),"@odata.type","")})
I have created a button to store the current attachment in a collection to view the current collection items and it shows the following:

I have watched the youtube movie from Shane Young on how to do it and there are 2 differences:
1: I have an existing attachment form card so I did not copy it, put it outside of form and then have the user attach attachments manually before the email is sent. I want to use the existing attachment(s) as stored in my Sharepoint list for this specific record.
2: In my example the Value refers to appres://datasources/Voyages/table etc. while I see in the video from Shane but also others it refers to blob after the datasources.
Can anyone help figuring out what I am doing wrong? Many thanks in advance.