Hi, I’m working on a model that uses the Send email action and I’d like include the company’s logo in the email. I was able to get this to work using CID, but the image is attached to the email and it looks weird in Outlook. When I attempt to provide a link to the image in an HTML img tag I only get the broken image icon. Any help would be appreciated.
Hi @NewMorpher, and welcome to the Community!
Embedded image files are not currently supported by the "Send email" action. And direct links to external images in HTML message content are blocked by some email clients by default.
As a workaround, you can try using Base64 Data URI:
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUh..." alt="Logo">
But it also may not be supported by some clients. You can convert your image into a BASE64 string using an online converter.
1 Like
Hi Andrew, converting to Base 64 worked perfectly. Thank you!
You are welcome!
1 Like