I am new to working with power apps and am trying to add an attachment to my email using an attachment control, I am also trying to use the email addresses off of a list that is attached to the main gallery.
Office365Outlook.SendEmailV2(EmailPeopleGallery1, TextEmailSubject1.Text, RTEBody.HtmlText,
{Cc:"***@***.com},
{Attachments: AddColumns( RenameColumns(AttachedLEM.Attachments,"Value", "ContentBytes"), "@odata.type", "") },
{Importance:"Normal"});
Reset(TextEmailSubject1);
Reset(RTEBody);
Reset(EmailPeopleGallery1);
I keep getting "Invalid number of Arguments, received 6, expecting 3-4'
it is also not liking my choice for EmailPeopleGallery as an option to get email addresses.
Thanks