Php adjustment PLEASE

I have a flash email feedback form.
I am receiving messages however the message appears in the subject line not the message space in my email program.

Heres my email.php

<?PHP
$to = "[email protected]";
$msg = "$name

";
$msg .= "$message

";
mail($to, $msg, "From: My web site
Reply-To: $email
");
?>

Can someone tell me what I need to change PLEASE