Hello,
I get the following error when I execute the below script "Can't call method "mail" on an undefined value at ./recalert.plx line 24, <RECCHK> line 9."
I did not write the original perl script, I just modified the email addresses to work in my environment, and the email addresses in the below script are sanitized.
The script has worked for about three years without issue, I really have no perl experience, and not sure what the error means, or how to fix it/
Please help
#!/usr/bin/perl -w
$from = 'email@123.org';
$to = 'email@456.org';
$servername = 'email.789.org';
# $user ='username';
# $pwd ='password';
open RECCHK, "/tmp/statusmon.eml";
@recchkvar = <RECCHK>;
use Sys::Hostname;
my $host = hostname();
my $host1 = uc($host);
open STDERR, '>&STDOUT'; #redirect STDERR output to STDOUT
use Net::SMTP;
$smtp = Net::SMTP->new("$servername", Debug => 1);
### Enable below if authentication required and set parameters above
# $smtp->datasend("AUTH LOGIN\n");
# $smtp->datasend("$user\n");
# $smtp->datasend("$pwd\n");
sleep(2);
$smtp->mail("$from");
$smtp->to("$to");
$smtp->data;
$smtp->datasend("Subject: 79XX/69XXC/WB3 InfiniStream $host1 has an is
+sue, and requires investigation \n");
foreach $line (@recchkvar)
{
$smtp->datasend("$line\n");
}
close RECCHK;
$smtp->dataend;
$smtp->quit
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|