Hi,
When I recieve e-mail from my site I am getting
anonymous@mysite.com
in the from line. Here is my script. Can you help me change it so the from line displays the users email address. TIA
Elskan
<?php
$to = "me@mysite.com";
$subject = "Web Site Feedback";
$body = "Name: {$POST['forename']}\n".
"Address:{$POST['address1']}\n".
"E-mail: {$POST['e_mail']}\n\n".
"Comments: {$POST['message']}\n";
mail( $to, $subject, $body);
?>