When i fill my webiste contact form n submit the form the email is not delivering to my inbox nor spam
My hosting person says that the code must be in 5.4 version so can u please help me out with this
contact_msg.php(file name)
PHP Code:
<?
$to = "sunil@blitzhunt.com";
$from = "From: ".$_POST['email'];
$subject = "Enquiry";
$message = "Dear Admin,\r\n";
$message .= "Please find below order form submitted by a visitor at the website: \r\n";
$message .= "----------------------------------------\r\n";
$message .= "Visitor Name: ".$_POST['cname']."\r\n";
$message .= "Visitor Email: ".$_POST['email']."\r\n";
$message .= "Visitor Phone: ".$_POST['phone']."\r\n";
$message .= "Visitor Address: \r\n";
$message .= $_POST['address']."\r\n";
$message .= $_POST['city']."\r\n";
$message .= $_POST['state']."\r\n";
$message .= "----------------------------------------\r\n";
$message .= "System Alert!";
ini_set("sendmail_from", "sunil@blitzhunt.com");
mail($to,$subject,$message,$from);
?>
Mod's note:
Please do not post the same thread multiple times. Sometimes, legitimate posts get caught in our spam filter. Moderators will review and approve these as quickly as possible; usually within a few hours.
Please be patient. Posting again only slows this process and makes more work for us.
Bookmarks