I'm on windoze also. I use Mail::Sendmail, but you need to know your smtp server! Edit the module and make the changes to reflect your smtp server and then edit\run this code to send an e-mail #print "sending email";
my $Msg = "my first email";
my %mail = ( To => 'YOU@YOUREMAIL.com',
Cc => 'SOMEONE@SOMEWHERE.com',
From => 'HOST@SOMEWHERE.com',
Subject => "Message",
Message => "$Msg \n");
sendmail(%mail) or die $Mail::Sendmail::error;
|