I was receiving from my web page, messages with mailform.php with the example above. Since the new changes i have not received my messages anymore. I would like some help with this issue. Thank you.
if (!isset($email) || !isset($first_name)) {
header("Location: http://www.ozonofilter.x10hosting.com/contactenos.html ");
}
elseif (empty($email) || empty($first_name)) {
header("Location: http://www.ozonofilter.x10hosting.com/contactenos.html ");
}
else {
mail("carzabala@ozonofilter.x10hosting.com","From: ozonofilter.x10hosting.com visitor",$body);
header("Location: http://www.ozonofilter.x10hosting.com/home.html ");
}
?>
if (!isset($email) || !isset($first_name)) {
header("Location: http://www.ozonofilter.x10hosting.com/contactenos.html ");
}
elseif (empty($email) || empty($first_name)) {
header("Location: http://www.ozonofilter.x10hosting.com/contactenos.html ");
}
else {
mail("carzabala@ozonofilter.x10hosting.com","From: ozonofilter.x10hosting.com visitor",$body);
header("Location: http://www.ozonofilter.x10hosting.com/home.html ");
}
?>