In my automation we are facing one issue, while sending the mail bot is sending the data in HTML format but I have enabled the “isHTMLBody” in the property panel also. I need to know why the body of the email still in the Html format and how to resolve this issue.
Please help me to resolve the issue this will help in out automation.
Ensure that the HTML content is correctly formatted. Any syntax errors in the HTML might cause it to be rendered as plain text.
Double-check that the IsBodyHtml property is indeed set to True.
Sometimes, encoding issues might cause HTML to be displayed incorrectly. Ensure that your HTML content is properly encoded.
If your HTML content includes special characters, ensure they are properly encoded. For example, use & instead of &, < instead of <, and so on.