Get a hold of someone with this contact form.
Pretty self-explanatory.
You might want to strip newlines from $_POST['name'] to prevent header injection.$name = str_replace(array("\r","\n"), '', $_POST['name']);?>
Comments
You might want to strip newlines from $_POST['name'] to prevent header injection.
$name = str_replace(array("\r","\n"), '', $_POST['name']);
?>