Jump to content

php mail form help


cuekillar

Recommended Posts

mail.html------

<form action="send_email.php3" method="POST">
From:<input type="text" size="22" name="from" value="[email protected]"><br>
subject:<input type="text" size="22" name="subject" value="diary entry suggestion"><br>
Let me recieve newsletters!<input type="checkbox" name="php_script_list" value="yes"><br>
<textarea name="contents" rows="5" cols="40"></textarea><br>
Enter your message and click submit!<input type="submit" name="B1" value="Submit"><input type="reset" name="B2" value="Reset">

-------------------


send_email.php3 -----


<?
$to = "[email protected]";
$from_header = "From: $from";
if($contents != "")
{
//send mail - $subject & $contents come from surfer input
mail($to, $subject, $contents, $from_header);
// redirect back to url visitor came from
header("Location: $HTTP_REFERER");
}
else
{
print("<HTML><BODY>Error, no comments were submitted!");
print("</BODY></HTML>");
}
?>



------------------

The problem is that I'm trying to get this script to work and although it looks fine to me, when I go to the mail.html , fill out the form and submit all i get is this....


Error, no comments were submitted!");
print("</BODY></HTML>");
}
?>

and I dont get the email
ignore the mailing list, i no its not working or anything.


http://www.nintendo.online-cue.com/mail.html try it and see if it works for you 
hope you can help
Link to comment
https://forums.phpfreaks.com/topic/23691-php-mail-form-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.