Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I did not change anything on my NT workstation or my script. And I can send mail out using my other software such as Cold Fusion using smtp. Please advise if anyone can offer any reason for my error message??Problem1! mail From: error (505 Secure channel required)
#use hash here print "okay\n"; my %mail = ( To => 'yourname@hotmail.com', From => 'myname@hotmail.com', Subject => "NO CHANGE HERE", Message => "NO CHANGES.\n", ); $mail{smtp} = 'smtpgate.nima.mil'; sendmail(%mail) or die "\nProblem1! $Mail::Sendmail::error\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mail error
by projekt21 (Friar) on Jun 12, 2002 at 10:21 UTC | |
by Anonymous Monk on Jun 12, 2002 at 10:36 UTC |