Hi
I am using this script on my website...
$msg = array($name, $address, $town, $county, $postcode, $email, $phone, $comments);
$name = 'name';
$address = 'address';
$town = 'town';
$county = 'county';
$postcode = 'postcode';
$email = 'email';
$phone = 'phone';
$comments = 'comments';
Using
mail($to, $subject, join("\n", $msg), $mailheaders);
works fine
the $to is my email address.
if i then try to email the person who filled the form out i.e mail($email, $subject);
doent work!!!
Any ideas...
Regards