PDA

Click to See Complete Forum and Search --> : HTML in an email.


deviled egg
11-28-2006, 05:17 PM
HTML in an email... I need to send a flattened jpg image to someone to put on their website with a link. When I sent a hyperlinked image, i got this reply "can you send it to me in html?" :confused: I use dreamweaver to build websites, so making an image a link is not hard, but I need help with this, please and thank you.

morea
11-28-2006, 05:23 PM
not sure if these will help...

HTML email question (http://www.graphicdesignforum.com/forum/showthread.php?t=15116)

Email Template (http://www.graphicdesignforum.com/forum/showthread.php?t=20548)

HTML in email question (http://www.graphicdesignforum.com/forum/showthread.php?t=4014)

chris_bcn
11-28-2006, 06:40 PM
Can't you just send it as an attachment?

xplod_ldg
11-29-2006, 12:54 PM
Basically upload the image to your server (if you have one) or upload it to imageshack (www.imageshack.us) and then make a HTML file with the following code :


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>HTML email</title>
</head>

<body>
<a href="http://www.internetaddress.com/"><img src="http://www.whereyouuploadedtheimagefile.com" /></a>
</body>
</html>

Now get a mass mailer like Easy Mass Mailer (it's very basic and simple). The address is : http://easysoftmade.com/massmailer/
Enter the program and just select HTML code at the body of the email and copy and paste the code above. Insert the email address you want to send to and click send.

Note : It's very important that the path to your image file is an Internet address (http://www.whereyouuploadedtheimagefile.com or http://www.youraddress.com/file.jpg) so it can be displayed corectly on any computer with internet access.