Koha/tools/runreport.pl
Chris Cormack 0d71db9aa8 Fixing a hardcoded email address, changing to use the KohaAdminEmailAddress sys pref
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-11-06 06:26:38 -06:00

38 lines
904 B
Perl
Executable file

#!/usr/bin/perl
# fix this line
use C4::Reports;
use C4::Context;
use Mail::Sendmail;
my ($report,$format,$email) = @ARGV;
my ($sql,$type) = get_saved_report($report);
my $results = execute_query($sql,$type,$format,$report);
my $message;
if ($format eq 'text'){
$message="<table>$results</table>";
}
if ($format eq 'url'){
$message="$results";
}
if ($email){
my $to = $email;
# should be koha admin email
my $from = C4::Context->preference('KohaAdminEmailAddress');
my $subject = 'Automated job run';
my %mail = (
To => $to,
From => $from,
Subject => $subject,
Message => $message
);
if (not(sendmail %mail)) {
warn "mail not sent";
}
}