Hello,
I am trying to setup a mail form for my website www.barbarajyoungman.com
The script I'm using is the following in a file called sendmail.php
<?php
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
if (!isset($_REQUEST['email'])) {
?>
<html>
<head><title>Feedback Form</title></head>
<body>
<h1>Feedback Form</h1>
<p>
<form method="post" action="sendmail.php">
Email: <input type="text" name="email" /><br />
Message:<br />
<textarea name="message" rows="15" cols="40">
</textarea><br />
<input type="submit" />
</form>
</p>
</body>
</html>
<?php
}
Now im pretty sure the code is working properly but i never get an email when I test it out.
The test.php is here http://barbarajyoungman.com/test.php
Can anyone help?