i downloaded the smtp server: postCast server
i opened up port 25 on my firewall.
made my php.ini file look like the following:
[mail function]
; For Win32 only.
SMTP = localhost ; for Win32 only
smtp_port = 25
sendmail_from= jeff@appSigPro.com ; for Win32 only
and created the following PHP file:
<?php
mail('lives4him06@yahoo.com','hello','hey jeff','hey');
?>
yet i still get the following message:
Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in c:\documents and settings\jeffrey\my documents\thejlp\profiles\mail.php on line 2
whats going wrong?