Would it be possible to have the email subject as a drop down list?. I have tweaked the email template in the power apps, but isn’t working
/*Create semicolon separated list of people to email, send the email, reset subject & message fields*/
Set(_emailRecipientString, Concat(MyPeople, Mail & ";"));
Office365Outlook.SendEmailV2("abc@xyz.com", Dropdown1.Selected.Value, TextEmailMessage1.Text, {Importance:"Normal",Cc:_emailRecipientString,From:"xyz@abc.com"});
Reset(Dropdown1);
Reset(TextEmailMessage1);
Clear(MyPeople)