Hi all,
I am getting incredible amounts of contact form spam and wondered if there was anyting I can do to my PHP in the form to fix this problem.
This is the PHP I use in my form:
<?
$Message = "Name: $fullname\n";
$Message .= "Email: $email\n";
$Message .= ".................\n";
$Message .= "Subject: $subject\n";
$Message .= "\n";
$Message .= "Comments: $comments\n";
$Message .= "\n";
$Message .= ".................\n";
$Message .= "$HTTP_USER_AGENT\n";
mail("$admin_email", "$email_subject", $Message , "From: $email");
mail("$email", "$cc_sender", $Message , "From: $email");
?>
Any suggestions?
Many thanks