HTML stream to display values from clipboard properties

Hello I am using HTML stream to create the structure of the body invite in Exchange using Microsoft Graph API and a connect-REST service is used to call the API. The body invite structure is saved and is displayed on the actual invite at Exchange as HTML which is the expected and desired output but the issue is that the clipboard properties that I need to display in the body invite are not being shown despite using the html code below:

Customer name: <pega:reference name=".pyWorkParty(Customer).FullName"

Email address: <pega:reference name=".Email"

The html is in the same class as where the property values I need are. I have tried to use Primary and pyWorkPage explicitly but the values are not being displayed still.

@AlyssaAshleyC One of the option to achieve your requirement is using Property-Set-Stream activity method. I assume you are looking for the highlighted text as below

I had a very similar requirement of creating a PDF out of the email sent by the case. For this use case i used the code (step 1 & 2) like below

@Byshu_Ayyappaswamy hello gave this a try and it worked! Thank you!