I used to have IIS and then switched to apache web server for windows. When I try to send an email using the mail() function, I get the following error:
PHP Warning: Failed to Receive in ...<file> on line 130
What's wrong with the mail function? Does Apache have a built in SMTP? or do I have to download additional programs. Here is my php.ini file:
[mail function]
; for Win32 only.
SMTP = localhost
; For Win32 only.
sendmail_from = me@me.com
I even tried to put mail as the SMTP instead of localhost and it stilll doesn't work. When converting to apache, what must one do to make the mail function work. Could it also be that my port 25 is blocked and if so how would I unblock it. If anybody can help me out and give me a boost, that would be greatly appreciated. Thank you
Armond