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
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
toCode:forum test
- Delete the redundant code and save the changes (screenshot 4). You should be left with something like this:Code:<img src="?entryPoint=attachment&id=66d5b72d45f11a065" style="width: 81.007px;">
- You will get the result as in screenshot 5.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:
And the final code of your linked image will be something like this:Code:<img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" />
It will also be useful: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>
Images can also be used as links in HTML, which means by clicking the images we can navigate to other web pages or resources. HTML image links are very useful in creating websites like photo galleries, portfolios, online stores, and so on.
Comment

Comment