Hi
I have set up a contact form which sends the email which arrives in my mail box but there is no text in the body of the email.
//The 3 form fields from the call back form which I want to display in the body of the email
$input1 = $POST['inputtext1'];
$input2 = $POST['inputtext2'];
$input3 = $_POST['inputtext3'];
$to = 'c.mohan@btinternet.com';
$subject = 'call back';
$messeage = '$input1,$input2,$input3';
$headers = 'From: chris@mohan.com' . "\r\n" .
'Reply-To: chris@mohan.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
so I recieve the email but its blank
dose anybody know why.
Thanks
Chris