Koha/tools/runreport.pl
Chris Cormack ce0b4276f6 Getting stored results working
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-10-29 16:12:34 -05:00

37 lines
856 B
Perl
Executable file

#!/usr/bin/perl
# fix this line
use C4::Reports;
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 = 'crc@liblime.com';
my $subject = 'Automated job run';
my %mail = (
To => $to,
From => $from,
Subject => $subject,
Message => $message
);
if (not(sendmail %mail)) {
warn "mail not sent";
}
}