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
$sendTo = "lolo@lolomedia.com";
$subject = "Optional Survey I";
$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);
?>
thanks for any help in advance!