kavi Posted January 23, 2008 Share Posted January 23, 2008 the following code: //start building the mail string $msg .= "Name: $_SESSION[name]\n"; $msg .= "E-Mail: $_SESSION\n"; $msg .= "Person: ".$_SESSION['person']."\n"; $msg .= "Message: ".$_SESSION['message']."\n"; //set up the mail $recipient = "usertest12@mra.mu"; $subject = "Form Submission Results"; $mailheaders = "From: Testing <usertest01>\n"; $mailheaders .= "Reply-To: $_POST"; //send the mail mail($recipient, $subject, $msg, $mailheaders); work in linux (RHEL 5) LAN environment but does not work in linux (DMZ) environment. Please Help!!!! Quote Link to comment https://forums.phpfreaks.com/topic/87365-email-problem/ Share on other sites More sharing options...
tapos Posted January 23, 2008 Share Posted January 23, 2008 Please configure your linux (linux (DMZ) environment.) properly. I think this is the configuration problem. -- Thanks, Tapos Pal http://tapos.wordpress.com Quote Link to comment https://forums.phpfreaks.com/topic/87365-email-problem/#findComment-446873 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.