In this post iam placing one of my doubts...And i want to learn how to do it....!!
The question is about adding images to an email..That is like we post images in forums and blogs..i want it to be in the email..How can i do that...
You guys may feel it to be very simple and easy..So please share that information with me..so that i can do that...
OK, if you just want to send images themselves then just add them as attachments. All half decent webmail systems and email clients will display them automatically for you.
If you mean you want them actually embedded as part of a message or as graphics then you basically all you need to do is write the email in HTML like you would a web page. Very old email clients won't support this and the newer ones usually block displaying the images by default until you click "allow content" or similar.
So do you mean that i should do as i write the website pages using HTML...??That is i sign into my Gmail account and click on Compose Mail..then i start writing like...
<html>
<body>
****content****
</body>
</html>
Did you mean doing like this...?? Please reply me..so that i can start doing like that...!!
copy paste from the source of a mail I got in my spam folder (removed the content itself):
| Code: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<!--
If you are seeing this message your email program probably does not
support html formatted mail messages.
-->
<head>
<title>The title of the mail</title>
<meta name="createdate" content="January 29 2008">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body link="#CC0000" vlink="#CC0000" alink="#CC0000">
<center>
<font style="font-family: verdana, arial, helvetica; font-size: 11px; color: #000000;">
This is a ..... Exclusive Mailing!<br>
To drop your subscription, use the link at the bottom of this message.<br>
</font>
</center>
<table width="550" height="50" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="left"><a href="http://www......com/cgi-bin/ct.cgi?id=2195"><img src="http://www.....com/images/.._logo.gif" alt="...." width="120" height="19" border="0"></a></td>
<img src="http://www.news....com/images/dot2.gif" width="1" height="1" border="0">
</body>
</html>
|
Maybe some tags are not closed or not opened but that's because I deleted most of the mail.
| Quote: |
So do you mean that i should do as i write the website pages using HTML...??That is i sign into my Gmail account and click on Compose Mail..then i start writing like...
<html>
<body>
****content****
</body>
</html>
Did you mean doing like this...?? Please reply me..so that i can start doing like that...!! |
I think you should create an html file like that and then attach that html to your mail!(at least I tried at yahoo like that and it worked... but after writing html code directly your mail it didn't worked)
host the images in some webhost or ur own host and try it.