Am I overlooking something here?.. The script returns no errors when I hit submit but I never get anything to my inbox or spam box…
[code]
Name(required)
E-mail(required)
Phone
Message(required)
[/code]
[php]<?php $name = $_POST[‘namet’];
$email = $_POST[‘mailt’];
$phone = $_POST[‘phone’];
$formcontent=“From: $name \n Message: $phone”;
$recipient = “This is where my email goes…obviously”;
$subject = “Contact Form”;
$mailheader = “From: $email \r\n”;
mail($recipient, $subject, $formcontent, $mailheader) or die(“Error!”);
echo “Thank You!”;
?>
[/php]
Please and thank you