Link to home
Start Free TrialLog in
Avatar of TownTalk
TownTalkFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Clickable image on Email Signature

We've designed an html email signature for our employees to use in their emails. This signature contains a .gif image and i've designated some clickable areas within the image to provide links to our website, facebook and twitter.

My problem is that whereas the clickable links work fine within a new message as it is being composed, when the email is sent and opened by a recipient, the clickable areas are not working. I've tried sending to Outlook recipients, and also to my hotmail account with the same result.

Here is a simplified version of my html:

<html>
<body>
<img src="http://www.ourdomain.com/Signatures/EmailSignature.gif" usemap="ImageMap"/>
<map name="ImageMap">
  <area shape="Circle" coords="531,208,53" href="http://www.ourdomain.com"/>
  <area shape="Rect" coords="17,282,57,324" href=" https://www.facebook.com/pages/Our Company" />
  <area shape="Rect" coords="68,282,111,320" href="https://twitter.com/@OurCompany" />
</map>
</body>
</html>

Or is someone going to tell me that Outlook cannot send an email with clickable areas in the signature?
Avatar of Trenton Knew
Trenton Knew

I could tell you that I seriously doubt outlook is sophisticated enough to use "imagemap" in HTML.  Your best bet for what you are trying to accomplish is to use zero margin tiled images.
ASKER CERTIFIED SOLUTION
Avatar of Trenton Knew
Trenton Knew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This is a bit of a long shot, and I have never tried it but...

Outlook stores your signatures in %APPDATA%\Microsoft\Signatures

If you open this folder you will find text, RTF and HTML versions.  You could edit the HTML version to include your image map.  I suggest you send a test e-mail to see if it works or not.

Be warned though, even it this does work if you even edit it again in the signature panel it may loose your changes.
Avatar of TownTalk

ASKER

Yes. Thanks for that. We're going to split the image into chunks.