ladokha Posted March 21, 2009 Share Posted March 21, 2009 Hey guys i problem in getting form data in email.all code works finE.wHEN I SUBMIT THE BUTTON IT SAYS MESSSAGE SENT SUCCESSFULLY.But when i check my email .I didn't get any emai.so what could be the PROBLEM.My main file is test.php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Contact Form</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php if ($_SERVER['REQUEST_METHOD'] != 'POST'){ $me = $_SERVER['PHP_SELF']; ?> <form name="form1" method="post" action="<?php echo $me;?>"> <table border="0" cellspacing="0" cellpadding="2"> <tr> <td>Name:</td> <td><input type="text" name="Name"></td> </tr> <tr> <td>Subject</td> <td><input type="text" name="Subject"></td> </tr> <tr> <td valign="top">Message:</td> <td><textarea name="MsgBody"></textarea></td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Send"></td> </tr> </table> </form> <?php } else { error_reporting(0); $recipient = '[email protected]'; subject = stripslashes($_POST['Subject']); $from = stripslashes($_POST['Name']); $msg = "Message from: $from\n\n".stripslashes($_POST['MsgBody']); if (mail($recipient, $subject, $msg)) echo nl2br("<b>Message Sent:</b> To: $recipient Subject: $subject Message: $msg"); else echo "Message failed to send"; } ?> </body> </html> Link to comment https://forums.phpfreaks.com/topic/150482-please-help-in-getting-form-data-in-email-in-php/ Share on other sites More sharing options...
WolfRage Posted March 21, 2009 Share Posted March 21, 2009 Set the following and see what kind of errors you get. <?php error_reporting(1); ?> Link to comment https://forums.phpfreaks.com/topic/150482-please-help-in-getting-form-data-in-email-in-php/#findComment-790386 Share on other sites More sharing options...
ladokha Posted March 21, 2009 Author Share Posted March 21, 2009 I got this when i run the fine Message Sent: To: [email protected] Subject: werwer Message: Message from: werwe erwer Link to comment https://forums.phpfreaks.com/topic/150482-please-help-in-getting-form-data-in-email-in-php/#findComment-790414 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.