Forum Moderators: coopster
Here is the phpinfo();
(Local Values are same as master)
PHP Version 4.3.4
sendmail_from webmaster@my-isp-domain.com
sendmail_path no value
SMTP mail.my-isp-domain.com
smtp_port 25
another option is to time the script itself. Time the total time it takes as well as just timing how the long the mail function takes to return.
we have done things like write to file and send using a cron to eliminate these types of problems. We also write directly to the mail queue, though this still takes time. I have also only done that on *nix based systems.
The write to file/queue methods sound interesting. I have not found much documentation on how to do this on the web. Know of any tutorials or code examples for windows?