PDA

View Full Version : html emails?


bigdog
03-14-2002, 09:12 AM
how do you send out html emails?

PeepNTom
03-14-2002, 10:57 AM
depends on what email client you are using?<br />its in settings <img border="0" alt="[Hi]" title="" src="graemlins/hi.gif" />

katdaddy
03-14-2002, 11:00 AM
make a wish bigdog and it will happen!<br /><br />katdaddy

Joshua
03-14-2002, 11:48 AM
Same way you setup HTML pages.

AgentCash
03-14-2002, 01:46 PM
Your email program has to send out the text/html header.

webwolf
03-14-2002, 02:18 PM
</font><blockquote><font size="1" face="Verdana, Arial">quote:</font><hr /><font size="2" face="Verdana, Arial">Originally posted by bigdog:<br /><strong>how do you send out html emails?</strong></font><hr /></blockquote><font size="2" face="Verdana, Arial">Did you actually mean sending HTML emails with your mail client, or using some code that you can execute in your server? To send out an HTML email you must use correct Content-Type clause in email header... something like this:<br /><br />Mime-Version: 1.0<br />Content-Type: text/html; charset="iso-8859-1"<br /><br />(HTML)<br />(!-- some stuff --_<br />(/HTML)<br /><br />You must put a couple of "\n" before HTML begins... let me know if you need a working code sample <img border="0" title="" alt="[Smile]" src="smile.gif" /> <br /><br />Serge