Hi @Anonymous ,
Based on the issue that you mentioned, I have made a test on my side, and don't have the issue that you mentioned. Please check if you have referenced proper Html Text value within the Body field of the Office365Outlook.SendEmail() function.
Please also consider take a try with the following workaround:
Modify your send email formula as below:
If(
SG2Success="SaveDraft",Navigate(LandingDashboard);Notify("Project has been saved as draft.",NotificationType.Success),
If(
SG2Success="Submit",
Office365Outlook.SendEmail(
SG2SenstveBusOwnVal.Text,
"Stage Gate 2 Submitted for Business Approval -"&SG2PrjNumbVal.Text&" -"&SG2PrjNameVal.Text,
If(SG2EmailBodyApproval.HtmlText <> "Show your <b><font color=blue>HTML</font></b> text here.", SG2EmailBodyApproval.HtmlText) // Modify formula here
{
IsHtml:true,
Importance:Normal,
Attachments: AddColumns(RenameColumns(SG2AttachmentsVal.Attachments,"Value","ContentBytes"),"@odata.type","")});Patch('PM&R Tracker',First(Filter('PM&R Tracker',ProjectNumber=SG2PrjNumbVal.Text)),{ProjectStatus:LookUp(Choices('PM&R Tracker'.ProjectStatus),Value="Stage Gate 2 -Pending Business Owner Approval")});Navigate(LandingDashboard);Notify(SG2PrjNumbVal.Text & " has been submitted for approval –this form is now locked until a decision is actioned.",NotificationType.Success),Navigate(LandingDashboard))
Please take a try with above solution, check if the issue is solved.
Best regards,