Hi Experts,
This is my first attempt at a powerapps and i'm amazed i've done as much as I have so far, there's one thing I can't seem to get to work. I'm trying to email the signature and the attachments that are uploaded on the powerapp. I've added the below code but it only sends through the signature and not the attachments. Can you tell me where i'm going wrong please?
Office365Outlook.SendEmailV2("firstname.lastname@mydomainname.com", "Subject Here", "Body Here",{Attachments: AddColumns( RenameColumns (AttachmentControl.Attachments,"Value", "ContentBytes"), "@odata.type", "")};
{Attachments:Table({Name:"Drawings.jpg", ContentBytes:Signature.Image , '@odata.type':""})});Reset(AttachmentControl);Reset(Signature)
Thanks in advance!