I am using extremely simple code to test out the mail() function on my computer. I have use IIS 5.1 and PHP 4.3.11 in order play around with PHP and get to know it a little.
For some reason, the operation is timing out (after about 2 minutes) giving this error:
CGI Timeout
The specified CGI application exceeded the allowed time for processing. The server has deleted the process.
The basic code I'm using is:
mail("address@domain.com", "Subject here", "Main message");
No headers, just the address to mail it to (obviously, a valid email address of my own), a subject and the message.
I have tried searching, but even the almighty Google is failing me on this one. Any ideas on what on earth is going on here?