HTML tags are showing in the email body
I am trying to send email with some content which is stored in a property.
First I am copying a corr rule to a property and then i am updating that property in RTE and after that I am using that updated property in a corr rule and when i am sending an email ,in the outlook I am getting these below tags
<ul>
<li>Test for li and ul Test Test Test <strong>Test</strong></li>
</ul>
and if I check the source code from outlook its looking like
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>
</title>
</head>
<body>
<ul><br> <li>Test for li and ul Test Test Test <strong>Test</strong></li><br></ul>
</body>
</html>
I want to display these text as bold with some other styling. How can I achieve it.