in reply to Re: OT - Sending Email on Windows
in thread OT - Sending Email on Windows
#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;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: OT - Sending Email on Windows
by Anonymous Monk on Apr 22, 2005 at 14:37 UTC |