RE: [PHP] Mail() and html

2003-06-14 Thread gregory landry
Got it! Thanks... -Original Message- From: gregory landry [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 6:23 AM To: PHP Mail List Subject: [PHP] Mail() and html Good Morning, Hopefully I'm not asking questions that are too basic. I am new to this list and new to PHP. If my

RE: [PHP] mail with html

2001-07-23 Thread Sandeep Hundal
here's a script i wrote a while back. copied and pasted. - ? if ($submit) { $headers .= From: $myemail \n; $headers .= cc:$cc \n; $headers .= bcc:$bcc \n; // $headers .= Content-Type: text/html; charset=iso-8859-1\n; $message =

RE: [PHP] mail with html

2001-07-23 Thread Sandeep Hundal
Message- From: Sandeep Hundal [mailto:[EMAIL PROTECTED]] Sent: 23 July 2001 11:06 To: 'Adrian D'Costa'; php general list Subject: RE: [PHP] mail with html here's a script i wrote a while back. copied and pasted. - ? if ($submit) { $headers .= From: $myemail \n

RE: [PHP] mail with html

2001-07-23 Thread Adrian D'Costa
it. /sunny -Original Message- From: Sandeep Hundal [mailto:[EMAIL PROTECTED]] Sent: 23 July 2001 11:06 To: 'Adrian D'Costa'; php general list Subject: RE: [PHP] mail with html here's a script i wrote a while back. copied and pasted. - ? if ($submit

RE: [PHP] mail with html

2001-07-23 Thread Sandeep Hundal
-Original Message- From: Adrian D'Costa [mailto:[EMAIL PROTECTED]] Sent: 23 July 2001 12:26 To: Sandeep Hundal Cc: php general list Subject: RE: [PHP] mail with html Hi Sandeep, Thanks for your mail but I was looking at something else. This is what I need. I have a table that I

RE: [PHP] mail with html

2001-07-23 Thread Adrian D'Costa
: RE: [PHP] mail with html Hi Sandeep, Thanks for your mail but I was looking at something else. This is what I need. I have a table that I will be selecting certian records and mailing to clients that have signed up. The result should be in html and plain text. The plain text

RE: [PHP] mail with html

2001-07-23 Thread Sandeep Hundal
:[EMAIL PROTECTED]] Sent: 23 July 2001 13:04 To: Sandeep Hundal Cc: php general list Subject: RE: [PHP] mail with html The question is how do I declare the html coding in the message part. Any samples Adrian On Mon, 23 Jul 2001, Sandeep Hundal wrote: well all you need to do is use part

Re: [PHP] mail with html

2001-07-23 Thread Jome
Here is an example that I use myself for sending HTML code via email. ? function qp_encode($str) { $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY); foreach ($chars as $char) { if (ord($char) 127 || ord($char) == 61) $result .= sprintf(=%X, ord($char));

Re: [PHP] mail with html

2001-07-23 Thread Sheridan Saint-Michel
. Sheridan - Original Message - From: Adrian D'Costa [EMAIL PROTECTED] To: Sandeep Hundal [EMAIL PROTECTED] Cc: php general list [EMAIL PROTECTED] Sent: Monday, July 23, 2001 7:03 AM Subject: RE: [PHP] mail with html The question is how do I declare the html coding in the message part. Any