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 = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";[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.