Hi all got a problem here.
I have a php code written as:
<?PHP
$to = “email@.com”;
$subject = “”;
$headers = “From: Form Mailer”;
$forward = 0;
$location = “”;
$date = date (“l, F jS, Y”);
$time = date (“h:i A”);
$msg = "Below is the result of your feedback form.
It was submitted on $date at $time.
";
if ($_SERVER[‘REQUEST_METHOD’] == “POST”) {
foreach ($_POST as $key => $value) {
$msg .= ucfirst ($key) ." : ". $value . "
“;
}
}
else {
foreach ($_GET as $key => $value) {
$msg .= ucfirst ($key) .” : ". $value . "
";
}
}
mail($to, $subject, $msg, $headers);
if ($forward == 1) {
header (“Location:$location”);
}
else {
echo “Thank you for submitting our form. We will get back to you as soon as possible.”;
}
?>
The problem is I can’t get the $headers = “From: Form Mailer”; when send to the email
to read as the sender email.
Any Xpert here can help me with these?