
Announcements
Hello,
I have created an email template. However, instead of having the text input, I want to insert a rich text editor. Whenever I recieve it in my inbox it looks like so:
<p><span style = "color:#8e44ad"><strong>test</strong></span></p>
I have also tried to use:
PlainText(RichEditor1)...
which works. However, if I highlight or change the color/font on the message, it does not send that way. Instead, it sends completely plain.
So the goal is to be able to use the rich text editor without the HTML tags, yet still send with colors/fonts/highlights/etc.
Thanks.
Hi @gjbannister01 ,
Is it an option for you to send HTML mails?
You can do so by setting the IsHtml flag to true, for instance:
Office365Outlook.SendEmail(
"user@email.com",
"Subject",
"Body",
{IsHtml: true}
)
For this to work you do need to add the Office 365 Outlook connector to your app.