Click here to Skip to main content
15,885,740 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have been going crazy trying to figure this out, and I am not that great at coding, considering I've only done it back when I was in high school. I have created an Email signature for my company, and I did it on photoshop. It was all good until the format needed to be changed around and my boss wanted the text to be on the image..... therefore changing the whole aspect of the project. this meant I had to do some coding, and use an HTML instead of just an image. so i went and created slices on the photoshop image, and linked the text to the website, email, etc. I then exported it as an html and I have all the files stored in a folder called images which is what its called in my coding. I then have the html file below it on my desktop. when i click it, and load into the browser it works perfectly fine, loads up and all the link work perfectly, but then when i go to put it into my gmail or imail signature it wont load anything, they are just blank boxes with question marks but the link still work. ive spent all day trying to figure this out. i need help! how can i fix this and make it work in my email signature!
Posted
Comments
Mohibur Rashid 25-Nov-14 1:34am    
I am trying to understand your problem but not sure yet. Tell me this, during writing time how dd you attach the signature in your e-mail? and what e-mail client do you use?

1 solution

Hi,

Give your image path us absolute URL like below.

HTML
<img src="http://ServerHost/VirtualDirectoryName/Imagefile.jpg" alt="SignImages" />


suppose your application URL is www.test.com and image name is SignPic.jpeg

then

XML
<pre lang="HTML">
<img src='www.test.com/SignPic.jpg' alt='SignImages' />
</pre>



Thanks
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900