Posted by Chuck Anderson on 08/08/06 19:55
monomaniac21 wrote:
> hi all
>
> how can u send a plain text version of an email with the html so that
> the users mail client can access this plain text version?
>
> kind regards
>
> marc
>
>
Phpmailer makes this easy. You need to create both versions - HTML and
plain text and then ...
$mail->IsHTML(true); // set email format to HTML
$mail->Body = "$html_body"; // HTML version
$mail->AltBody = "$text_body"; // plain text version
Phpmailer is easy to find >> Gô¿ôgle
--
*****************************
Chuck Anderson • Boulder, CO
http://www.CycleTourist.com
*****************************
[Back to original message]
|