Hi,
try this:
<?PHP
function sendMail($email, $code, $name) {
$html = "
<html>
<head>
<title>EnSky Video Business Card Receipt</title>
</head>
<body>
";
$subject = "EnSky Video Business Card Receipt";
$message = "
Dear $name,<br>
<p>
This was the first step in the process,
now it´s the fun part! Filming your Video
Monologue.
</p>
";
$message = $html.$message."</body>\n</html>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1\r\n";
$headers .= "From:Me<me@domain.com>\r\n";
mail($email, $subject, $message, $headers,"-fwebmaster@{$_SERVER['SERVER_NAME']}") or die("Unable to send mail");
}
?>
Try to specify the charset along with the Content-Type.
Thomas