Yeah I have the code right but it isnt working see here is what im using:
The form page:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<form action="testmail2.php" method="post" enctype="application/x-www-form-urlencoded" name="form1">
<p>
<textarea name="msgbdy" wrap="OFF" id="msgbdy"></textarea>
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>
and then here is the action page's PHP:
<?php
$to = "dwasyluk@artfunction.com";
$subject="Registration Information";
$msg="";
$msg .= $msgbdy;
echo"$msg";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .="From:Centre of Economics Form<info@cie-economics.com>\r\n";
mail($to, $subject, $msg, $headers);
echo"<div align=center><FONT face=verdana size=2>Thanks for the information</font></div>";
echo "<div align=center><FONT face=verdana size=2>The Information is emailed to Administrator-Centre</font></div>";
?>
Using this the HTML email will appear somewhat correct, but fonts dont display as they should, etc....