Name: Anonymous 2009-07-03 14:48
I have this:
And this:
But I get no mail, what's going on?
<html>
<head>
<title>LOLPHP</title>
</head>
<body>
<form method="post" action="mail.php">
Email: <input name="email" type="text" /><br />
<textarea name="message" rows="15" cols="80">
</textarea><br />
<input type="submit">
</form>
</body>
</html>And this:
<?php
$email = $_REQUEST['email'];
$text = $_REQUEST['message'];
mail("the_fuck_on@gmail.com",
"E-mail sending test",
$text,
"From: $email");
header("Location: thanx.html");
?>But I get no mail, what's going on?