Re: [PHP] html emails and plain text dectection

2007-07-17 Thread Richard Lynch
On Tue, July 17, 2007 10:41 am, brian wrote: > Ross wrote: > >> I am using the code to send an html email (phpmailer class) now I >> need to >> somehow determine if the recipient uses text only email and change >> email to >> plain. Is this possible? >> > > No. How could your script possibly detect

Re: [PHP] html emails and plain text dectection

2007-07-17 Thread Richard Lynch
On Mon, July 16, 2007 8:58 am, Ross wrote: > I am using the code to send an html email (phpmailer class) now I need > to > somehow determine if the recipient uses text only email and change > email to > plain. Is this possible? Not really... I mean, you could send them an email with an HTML "enha

Re: [PHP] html emails and plain text dectection

2007-07-17 Thread brian
Ross wrote: I am using the code to send an html email (phpmailer class) now I need to somehow determine if the recipient uses text only email and change email to plain. Is this possible? No. How could your script possibly detect how a person's email client is configured? In any case, you

Re: [PHP] html emails and plain text dectection

2007-07-16 Thread Richard Heyes
Ross wrote: I am using the code to send an html email (phpmailer class) now I need to somehow determine if the recipient uses text only email and change email to plain. Is this possible? No. -- Richard Heyes +44 (0)844 801 1072 http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk

Re: [PHP] html emails and plain text dectection

2007-07-16 Thread Stut
Ross wrote: I am using the code to send an html email (phpmailer class) now I need to somehow determine if the recipient uses text only email and change email to plain. Is this possible? Not really, no. You can send both HTML and plain text versions in the same email and nearly all clients wi

[PHP] html emails and plain text dectection

2007-07-16 Thread Ross
I am using the code to send an html email (phpmailer class) now I need to somehow determine if the recipient uses text only email and change email to plain. Is this possible? include( 'html_emails/html2.php' ); $mail_body = ob_get_contents(); ob_end_clean(); include("../mailer/clas