Hi @Anonymous ,
Could you please share a bit more about your scenario?
Do you want to send a HTML text created in your app using Microsoft Flow?
If you want to send a HTML text created in your app using Microsoft Flow, you need to pass the HTML text (called 'mailBody') from your app to your flow firstly. Then you could use the passed HTML text (called 'mailBody') within your flow.
Based on the needs that you mentioned, I think the PowerApps Trigger button could achieve your needs. I have made a test on my side, please take a try with the following flow's configuration:
Within your app, you could call/fire the flow using the following formula:
Set the OnSelect property of the "Send Email" button to following:
'20190218_case8_1'.Run(HtmlText1.HtmlText)
On your side, you should type:
'YourFlowName'.Run(HtmlText1.HtmlText) /* <-- HtmlText1.HtmlText represents the 'mailBody' HTML text that you mentioned */
More details about starting a flow from an app, please check the following article:
Start a flow from an app
Please also check and see if the following video would help in your scenario:
https://www.youtube.com/watch?v=IhE0-HumNNo&feature=youtu.be
https://www.youtube.com/watch?v=2rfAQe1kK8M
Best regards,