I have an email activity in workflow. I have a logo image on my computer. How do I attach that logo in the email activity?
Thanks
Priya
I have an email activity in workflow. I have a logo image on my computer. How do I attach that logo in the email activity?
Thanks
Priya
Hi,
You can use HTML in the workflow email activity to add the logo. You just need to make sure the logo is accessible publicly https://www.w3schools.com/html/html_images.asp
You can embed the images in the email as a base64 string. Basically, use an online converter (Google will bring back lots), then embed as:
<img src="data:image/jpeg;base64,YOURCONVERTEDSTRINGHERE">
Hi, I am using your method to add a digital signature to my email activity. The issue I am facing is the base64 string is so incredibly long I run out of characters and cannot type the actual contents of my email. Any suggestions?
Never mind. I need the actual digital signature as it has links that the receiver must be able to click so an image won't work.
What is the requirement you're trying to implement? Most mail clients don't display images by default these days, so the user would have the extra click of allowing images in the message.
The digital signature contained 'Rate our service' Images where the receiver would click one of the 3 options. I got it working using forms instead of workflow.
Ok. I have the image on my computer. How do I make it publicly accessible?
Hi, you can have a look at this website. It gives a few options you can use to upload your logo/image. It will give you a URL you can use in the HTML in workflow email activity. https://www.canto.com/blog/how-to-make-a-url-for-a-picture-on-your-computer/