|
Posted by shimmyshack on 04/28/07 15:31
On Apr 28, 3:52 pm, j...@lycos.com wrote:
> I'm using the following line of php code and would like to incorporate
> a little HTML in order to get line breaks <br> and bold headers <b></
> b> where I want. Anyone know how to make that happen?
>
> current:
> $mail->Body = ("From: $name, Area: $area, Issue: $issue");
>
> would like to get something as follows:
> $mail->Body = ("<b>From:</b> $name,<br><b>Area:</b>
> $area,<br><b>Issue:</b> $issue");
>
> Thanks,
> John
$mail->IsHTML(true);
[Back to original message]
|