Re: [PHP] Send HTML/plain text email using PHP

2004-05-30 Thread Jeremy Johnstone
Just as an FYI, the following line will get your email a lot of spam points in SpamAssassin: $headers .= "X-MSMail-Priority: High\r\n"; Also, I don't know if this has already been suggested, but there is an awesome class named htmlMimeMail which will handle your needs perfectly. Google it and

Re: [PHP] Send HTML/plain text email using PHP

2004-05-28 Thread Curt Zirzow
* Thus wrote Matt MacLeod ([EMAIL PROTECTED]): > ... > > $headers .= "Reply-To: [EMAIL PROTECTED]"; > $nonhtml = strip_tags($emailsend); > // This is the important part! > // This content type identifies the content of the message. > // The boundary delimits the plain text and html sections. > //

[PHP] Send HTML/plain text email using PHP

2004-05-28 Thread Matt MacLeod
I've been having a little trouble configuring a script to send a multipart email using PHP. The script send the message, but when I recieve the email it doesn't display the HTML version and I have to tell my mail client to displlay the plain text version (Mail on OS X 10.3.3). Here's the scrip