cuekillar Posted October 11, 2006 Share Posted October 11, 2006 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 inputmail($to, $subject, $contents, $from_header);// redirect back to url visitor came fromheader("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 emailignore 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 More sharing options...
Jocka Posted October 11, 2006 Share Posted October 11, 2006 Yea.. you'll need to set those variables first.send_email.php3[code]<?php$contents = $_POST['contents'];$from = $_POST['from'];$subject = $_POST['subject'];?>[/code] Link to comment https://forums.phpfreaks.com/topic/23691-php-mail-form-help/#findComment-107579 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.