omahony Posted July 5, 2010 Share Posted July 5, 2010 Why isn't this working?! It does everything except send the email to me. I know it's probably something simple that I'm missing, but I can't figure it out. Can anyone lend a hand? form code <form method ="post" name="leaguerequest" action="testPHP.php"> <table border="0" cellpadding="2"> <tbody> <tr> <td>Name:</td> <td><input type="text" name="name" size="25px" /></td> </tr> <tr> <td>Email:</td> <td><input type="text" name="email" size="25px" /></td> </tr> <tr> <td>Phone:</td> <td><input type="text" name="phone" size="25px" /></td> </tr> <tr> <td>Message:</td> <td><textarea name="message" rows="4" cols="20"></textarea></td> </tr> <tr> <td></td> <td align="right"><input type="submit" value="Submit" name="submit" /></td> </tr> </tbody> </table> </form> php code <?php if (isset($_POST["submit"])){ $youremail = '[email protected]'; $fromsubject ='League Information Request'; $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $message = $_POST['message']; $to = $youremail; $mailsubject = $fromsubject; $body = $fromsubject.' Contact Name: '.$name.' Phone Number: '.$phone.' Email: '.$email.' Message: '.$message.' End of message'; mail($to, $email, $body); } else { echo "Please check the form and re-submit."; } ?> Link to comment https://forums.phpfreaks.com/topic/206806-email-form-help/ Share on other sites More sharing options...
phpSensei Posted July 5, 2010 Share Posted July 5, 2010 Code looks fine to me, might be something to do with you email server... Link to comment https://forums.phpfreaks.com/topic/206806-email-form-help/#findComment-1081575 Share on other sites More sharing options...
omahony Posted July 5, 2010 Author Share Posted July 5, 2010 i have form elsewhere on my site that is almost exactly identical to this one, and it works like a charm. I can't figure out what the heck is going on. thanks for taking a look at the code for me. Link to comment https://forums.phpfreaks.com/topic/206806-email-form-help/#findComment-1081582 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.