Result from flash -> php -> email on html format?

how can i get my result from flash -> php -> email on html format.

all i need on my email to be able to see it in colors, bold, etc.

this is my php code

<php>
<?php

$sendTo = "lolo@lolomedia.com";
$subject = “My new form”;

$headers = “From: <” . $_POST[“email”] .">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];

$message = "Prior to completing this orientation, would you have considered some of your e-Mail be corporate records?: $gender
";
$message .= "

";
$message .= $_POST[“Smessage”];

mail($sendTo, $subject, $message, $headers);

?>
</php>

thanks for the advice! :nerd: