I uploaded an image in the email, how do I configure it so that the recipient clicks on the image to link to a URL? I don't want to use a remote picture address
Announcement
Collapse
No announcement yet.
how do I configure it so that the recipient clicks on the image to link to a URL?
Collapse
X
-
A simple and effective way:
- When creating an email, make sure that the HTML option is enabled (screenshot 1).
- Copy and paste the desired picture, or drag it, or use the picture insertion form (screenshot 1).
- Use the link creation form (screenshot 2).
- Go to Code View </> mode (screenshot 3) and replace the phrase
Code:forum test
Code:<img src="?entryPoint=attachment&id=66d5b72d45f11a065" style="width: 81.007px;">
Code:<p><a href="https://forum.espocrm.com/forum/general/109793-how-do-i-configure-it-so-that-the-recipient-clicks-on-the-image-to-link-to-a-url" target="_blank"><img src="?entryPoint=attachment&id=66d5b72d45f11a065" style="width: 81.007px;"></a></p>
For base64 images, you should replace the image reference in src with something like this:
Code:<img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" />
Code:<p><a rel="noopener noreferrer" href="https://forum.espocrm.com/forum/general/109793-how-do-i-configure-it-so-that-the-recipient-clicks-on-the-image-to-link-to-a-url" target="_blank"><img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="></a></p>
How to use an image as a link in HTML - We can add image as a link and other HTML elements as a link. A link is a connection from one Web page to another web page. We can add page links to a web page. HTML links are hyperlinks. The tag defines a hyperlink and used to link from one page to another. The href attribute is used with the
Comment
Comment