On Tue, 12 Dec 2000, Shawn Honeychurch wrote:

> By The Way, will HTML tags work in this?
> 
> $mail_body .= L_SUBMITORDER_INVOICE_CONTENTS; - this is normal.
> 
> $mail_body .= <B>L_SUBMITORDER_INVOICE_CONTENTS</B>; -- will this work?

Nope, you need to quote anything you add:

$mail_body .= "<b>";
$mail_body .= L_SUBMITORDER_INVOICE_CONTENTS;
$mail_body .= "</b>";

And remember to use lowercase html tags.

- Isaac  =)



------------------------------------------------------------
To subscribe:    [EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Site:            http://www.working-dogs.com/freetrade/
Problems?:       [EMAIL PROTECTED]

Reply via email to