Does IIS have some type of program that can send mail? I am trying to have a form email to me using something like snedmail. I have tried to use some CGI scripts but most of the examples that I have found refer to the program sendmail. I know that sendmail is a UNIX/Linux program. Does Windows2000 or IIS 5.0 come with something like this and how do I use it?
from rgsenthilkumar
On a windows machine the mail() function will use an smtp host. You can set the smtp host in php.ini under the following section:
[mail function] SMTP = smtp.blah.com ; whatever server you want ... more options
Hope this helps...