Hello,
I've been seeing quite a few e-mails about the mail() function not
working...well mine worked fine until today i believe, but it looks like it
has to do with the php ini setting, althoug Ive changed my ini, it still
didnt work, so heres a workaround I found on php.net that works great. In
the script your working on right before the mail function, put the following
variables
ini_set("SMTP", "your.smtp.server");
(i used localhost, thats where my server is)
ini_set("sendmail_from", "[EMAIL PROTECTED]");
(i used postmaster@localhost)
now my script works great, and hopefully everyone else's will
~Jeff