Click to See Complete Forum and Search --> : Pint me in the right direction - Email design


oo7ml
06-01-2007, 08:27 AM
Hi, i want to be able to spruce up (beautify) my emails that are being sent to me via my contact form and also the emails that clients recieve from the site. Can some one point me in the right direction.

So far i only have this

$email = $_SESSION['my_array'][9];
$topic = "ID: $id\r\n";
$body = $message;
$from = "From: $email\r\n";

mail("reports@mydomain.com", $topic, $body, $from);

It's just plain text so i want to beautify it. I don't even know what to google, thanks

PineSolPirate
06-01-2007, 08:29 AM
http://phpmailer.sourceforge.net/

Does HTML mail easily, if that's what you are wanting.

sanchez_1960
06-01-2007, 10:37 AM
PHPMailer is good. If you did want to use straight mail, you can use HTML in your string. Simply build your email in HTML and use it with your variable.