RE: Add a clickable image in email signature
Good day,
I just tried something and it work, you could give it a try, I created a HTLM (code below) and added a href to the image, I then saved this to my email signature and when sent to me the image was clickable, for me this is the easiest way to achieve this.
The only think is that the image must be available online.
Below the code:
<!DOCTYPE html>
<html>
<head>
<title>Test Image Clicker</title>
</head>
<body bgcolor="white" lang="EN-US" link="blue" vlink="purple">
<p style="text-align:left">
<br>
<span style="font-size:9pt;font-family:Arial, Helvetica, sans-serif;color:#646567">Kind Regards,</span> <br>
<span style="font-size:9pt;font-family:Arial, Helvetica, sans-serif;color:#646567">Christo Venter</span> <br>
<p>
<a href="{Add your link here}">
<img border="0" alt="Signature" src="{Add you image here}" width="100" height="100">
</a>
</p>
</body>
</html>
Let me know otherwise I could try a few more things.
Thanks