thanks for the info tsinka.
i've "installed" the phpmailer script, which looks pretty robust. however, in this part of the code:
require("phpMailer/class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "localhost"; // SMTP server
$mail->From = "from@email.com";
$mail->AddAddress("myEmail@somedomain.com");
i'm thinking that "localhost" is not a valid SMTP server? again, i don't have SMTP (port 25) configured and listening on my windows 2003 server using apache 2.0.52.
is just plain old "localhost" valid for the Host? I can't seem to get this to work, no email is sent.
thanks.