Hi,
Looking for more help/advice.
So, I have an "App" that is connected to a sharepoint list. User can update the list and attach images.
For the user to upload the image im using "Add Picture" and then in that function its getting updated to SharePoint list and changed to base64 using below formula.
Patch(
'Generator Inspection',
LookUp('Generator Inspection', ID = Gallery4.Selected.ID),
{
'Generator Changeover Switch':Substitute(
JSON(
UploadedImage1.Image,
JSONFormat.IncludeBinaryData
),
"""",
""
)
}
);
I have proved it works it works as below you can see the data in the list and I have also pullled that data into the app with the "Image" function and it displays the image as it should.

Where I'm getting stuck now is, embedding that image into an email once a button is pressed. Below is the code I am using to send the email. The email sends okay, but what ever I try, the image will not appear in the email.
Set(varChangeSwitch,(Gallery4.Selected.'Generator Changeover Switch'));
Office365Outlook.SendEmailV2(
"email address", //yes, I have removed my email address for this form :)
"Test", //Subjsect
"<img src=" & varChangeSwitch & ">");