
Announcements
Hi currently creating a flow in where I create draft emails. I'm following this tutorial: Create a draft Email in Outlook - DamoBird365.
So far everything works nice, but I am trying to implement some code (HTML + CSS) inside the content (regard picture) and I'm getting constant errors, basically http can't recognize nor read the HTML. Is it possible to add html and CSS inside the content request? Thanks
Hi @esilvac,
Have you tried escaping the different html characters to turn it into valid json?
Let's say you have this HTML
<b>Hello World!</b><br /><a href="https://www.damobird365.com/create-a-draft-email-in-outlook">Create a draft Email in Outlook - Damien Bird</a>
You would need to add \ characters to escape the " characters of the a tag.
<b>Hello World!</b><br /><a href=\"https://www.damobird365.com/create-a-draft-email-in-outlook\">Create a draft Email in Outlook - Damien Bird</a>