Hello all,
I have a screen on my PowerApp that uses the OnVisible of a confirmation screen to update the Subject, Body, and other sections of an Outlook meeting. In the 'Body' portion of the code, I want say where the room has been moved to .. which is the following code:
"Room has been updated to " & RoomsGallery.Selected.Name
As well as (on a different line) the Body of the previous meeting in Outlook; which is the following code:
MeetingsGallery.Selected.Body
My code doesn't contain any errors and successfully patches information to the Body of the Outlook meeting, but the issue is that for the 'MeetingsGallery.Selected.Body' portion of code, it's all in HTML.

This is what the Body of my existing Outlook email looked like before the Patch (and how I want it to look like):

And this is what the Body of my meeting looks like after the Patch (my code in the app) has run:

^^ and if you scroll into the HTML, you'll see the Teams Meeting - Join link is embedded deep within it:

Does anybody know how I'd be able to convert the HTML that is generated from my 'MeetingsGallery.Selected.Body' code back into the format that it's supposed to be in?
Thank you!