Is there a way in PHP to send email that contains HTML in the body of the email? All of the implimentations of this that i have seen have been CGI(Perl) based.
If you want to send out an HTML-ized email message, simply add Content-Type: text/html to your mail() header, like this:
mail($mailuser, $subject, $message, "From: $from\nContent-Type: text/html");
--Ryan