popescuradhoo Posted February 19, 2009 Share Posted February 19, 2009 Hello, I have a web server running on WIndows 2003 server. My problem is that I can't send mails using this php code: <?php $to = "[email protected]"; $subject = "Test mail"; $message = "Hello! This is a simple email message."; $from = "[email protected]";[url] $headers = "From: $from";[/url] mail($to,$subject,$message,$headers); echo "Mail Sent."; ?> On other web hosting severs, the script works fine, but on mine, it doesn't send the mail. I think that is a problem on my configurations. I have here (http://radupopescu.ro/phpinfo.rar) some screenshot of my phpinfo file, maybe you can help me with this. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/145874-send-mail-issue/ Share on other sites More sharing options...
corbin Posted February 19, 2009 Share Posted February 19, 2009 You need an email server to send emails. Is PHP configured to talk to an email server? Quote Link to comment https://forums.phpfreaks.com/topic/145874-send-mail-issue/#findComment-766563 Share on other sites More sharing options...
popescuradhoo Posted February 20, 2009 Author Share Posted February 20, 2009 I have a exchange 2003 mail server. What config. is needed to send mail with php? Quote Link to comment https://forums.phpfreaks.com/topic/145874-send-mail-issue/#findComment-767391 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.