Hello!
I'm currently working on allowing a user to reply to an email within a ticketing system but am running into the following error:

The code that seems to be giving the error is this:
Office365Outlook.ReplyToV2(
Gallery4_1.Selected.messageID,
{
Body: RichTextEditor6.HtmlText,
Attachments: RenameColumns(DataCardValue9.Attachments, "Value", "ContentBytes"),
Subject: TextInput3.Text,
To: Concat(
ComboBox4.SelectedItems,
Mail & ";"
),
Cc: Concat(
ComboBox5.SelectedItems,
Mail & ";")
}
);
After a bit of testing, I noticed that the error only seems to appear when the user accessing the apps has MFA enabled on their account. We currently have an MFA policy which excluded PowerApps and Microsoft flows but it still doesn't seem to be going through. Getting rid of the MFA is out of the questions so does anyone have any suggestions for how to get around this without disabling the MFA entirely?
Thank you in advance!