Mail from web page not being received

Status
Not open for further replies.

ozono74

New Member
Messages
2
Reaction score
0
Points
0
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 ");
}
?>
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
I know some PHP changes were made, does this happen to work now by any chance? Or do you get any error messages?
 
Status
Not open for further replies.
Top