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 = "[email protected]"; $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!!!! 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 Link to comment https://forums.phpfreaks.com/topic/87365-email-problem/#findComment-446873 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.