PHP mail will not send from Windows Server 2008
I have two servers. One (linux) will send mail fine using the script below. The second (windows server 2008) sends nothing. <?php mail ( "nobody@email.com", "Contact Us Form", "This is an email from your site", "From: nobody@email.com" ) ?> mail() works very different on linux and windows. On Linux it pipes your mail to the sendmail binary, which does all the work On windows it actually needs to act as an MTA to pass the mail off to another application. On windows your best bet is to set the SMTP information so PHP can hand off the mail to another server which will take care of final delivery.