Re: [PHP] HTML email with Outlook

2003-07-15 Thread Tim Thorburn
Thanks to all those who responded, as always, spelling is key. Where I had -Type: text/html ... it should have read Content-Type : text/html ... So it works for now, and hopefully will continue to. I know that there are a number of email programs out there that do not support HTML mail, as wel

Re: [PHP] HTML email with Outlook

2003-07-15 Thread Manuel Lemos
Hello, On 07/15/2003 07:48 PM, Tim Thorburn wrote: I've made a PHP script that sends out an automatic email through my servers cron system, it works well, but I thought I'd try to do some HTML email to get things to line up a little better. To do so, I added the following line in my mail() comm

RE: [PHP] HTML email with Outlook

2003-07-15 Thread Mike Brum
ect: RE: [PHP] HTML email with Outlook "Remember not all email clients support email." Did I read that right or is it a typo? J -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 4:17 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] HTM

RE: [PHP] HTML email with Outlook

2003-07-15 Thread Johnny Martinez
"Remember not all email clients support email." Did I read that right or is it a typo? J -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 4:17 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] HTML email with Outlook Tim Thorburn <[EM

Re: [PHP] HTML email with Outlook

2003-07-15 Thread Curt Zirzow
Tim Thorburn <[EMAIL PROTECTED]> wrote: > Hi, > > I've made a PHP script that sends out an automatic email through my servers > cron system, it works well, but I thought I'd try to do some HTML email to > get things to line up a little better. > > To do so, I added the following line in my mail

RE: [PHP] HTML email with Outlook

2003-07-15 Thread Johnny Martinez
$headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; Does this help? Johnny -Original Message- From: Tim Thorburn [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: [PHP] HTM

Re: [PHP] HTML email with Outlook

2003-07-15 Thread Baroiller Pierre-Emmanuel
Hi, try with adding this : $header = "Content-Type: text/html; charset=\"iso-8859-1\"\nContent-Transfer-Encoding: 8bit\n\n"; If it don't work, try to build multipart email ... Regards, P.E. Baroiller "Tim Thorburn" <[EMAIL PROTECTED]> a écrit dans le message de news:[EMAIL PROTECTED] > Hi, > > I

Re: [PHP] HTML email with Outlook

2003-07-15 Thread Jim Lucas
3:48 PM Subject: [PHP] HTML email with Outlook > Hi, > > I've made a PHP script that sends out an automatic email through my servers > cron system, it works well, but I thought I'd try to do some HTML email to > get things to line up a little better. > > To do so, I

[PHP] HTML email with Outlook

2003-07-15 Thread Tim Thorburn
Hi, I've made a PHP script that sends out an automatic email through my servers cron system, it works well, but I thought I'd try to do some HTML email to get things to line up a little better. To do so, I added the following line in my mail() command: -Type: text/html; charset=iso-8859-1 Whe