I am writing this on notebook and trying to test it- that is - fill out form and verify email sent.
I do not get any emails...?
thanks in advance...
Code: Select all
<?php
$msg = "name: $_POST["name"]";
$msg = "e-mail: $_POST["email"]";
$msg = "message: $_POST["message"]";
$recipient = "info@myname.net";
$subject = "Web Page Inquiry";
$headers =
"From: $_POST[email]\n";
"Reply To: $_POST[email]\n";
mail($recipient,$subject,$msg,$headers);
?>
<?php
echo "<p>Thank You For Your Interest in name product</p>";
?>