Re: [PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
ave a nice day > jocke > > > > -Original Message- > > From: Seung Hwan Kang [mailto:[EMAIL PROTECTED] > > Sent: den 4 december 2003 12:27 > > To: [EMAIL PROTECTED] > > Subject: [PHP-WIN] Re: mail($To problem > > > > ok, u do like to pu

RE: [PHP-WIN] Re: mail($To problem

2003-12-04 Thread Disko_kex
TECTED] > Subject: [PHP-WIN] Re: mail($To problem > > ok, u do like to put some html codes in the contents... :) > > this one should be ok~~~ > > > $HTML_H = "welcomeM"; > $HTML_B = "Geee~"; > $HTML_T = ""; > > $content = $HTML

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Mike Quinn
Hi Alan, You have to set the headers to send HTML emails (that could be it!) $header = "MIME-Version: 1.0\r\n Content-type: text/html; charset=iso-8859-1\r\n"; $address = "[EMAIL PROTECTED]"; $subject = "HTML Email"; $content = "stuff"; mail($address, $subject, $content, $header); "Alan Mc

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
ok, u do like to put some html codes in the contents... :) this one should be ok~~~ $HTML_H = "welcomeM"; $HTML_B = "Geee~"; $HTML_T = ""; $content = $HTML_H . $HTML_B . $_POST["content"] . $HTML_T; mail($_POST["to"], $_POST["subject"], $content, $_POST["from"]); ?> Alan McDonald wrote: tha

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
thanks - but sorry no prize there - it makes no difference Alan "Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > i acidently sent it > > > Seung Hwan Kang wrote: > > > I guess it's related to slashes... (addslashes) > > > > Here is eg. > > > > // yourform.html

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
I guess it's related to slashes... (addslashes) Here is eg. // yourform.html to subject content from // mailto.php mail($to, $subject, $content, $from); ?> from Wollongong, NSW :) Alan McDonald wrote: Can someone tell me why I might be getting this problem? I construct an HTML email and s

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
i acidently sent it Seung Hwan Kang wrote: I guess it's related to slashes... (addslashes) Here is eg. // yourform.html to subject content from // mailto.php mail($to, $subject, $content, $from); ?> well, now it's correct! from Wollongong, NSW :) Alan McDonald wrote: Can someone te