Email problem

Hey guys

Big problem which I’ve only just picked up on…

on my site my site
under the contact section - in the message field - I recieve the email as long as the user doesn’t press the ‘enter’ button in the message field - if they do press the enter button and type e.g. so they have 2 seperate lines then I only recieve the first line of the email!

in the .fla the message field has been set to ‘multiline’

I may have to edit something in the PHP but don’t know what

email PHP code being used:

<?php
$sendTo = “mail@mysite.com”;
$subject = “email from mysite.com”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>

Hope you guys can help

Dips