Posts: 3,176
Name: Thierry
Location: I'm the uber Spaminator !
|
On windows, you must use a SMTP server top send mail using the mail() command.
This means that the server's PHP.ini must supply the username and password to sent those messages (if a login is required, of course. Not the case everywhere)
Sending the mail is done by "speaking" directly on a TCP session with the server. For this to append, a connection must first be opened to the server.
This is where your problem is, your PHP server cannot talk with a mail server (or the mail server refused to talk with it) an thus, no mail could be sent.
__________________
Only a biker knows why a dog sticks his head out the window.
|