From ec2831b12af80de61afb10f53354881a5dfb2b1f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 12 Dec 2014 12:18:47 +0000 Subject: [PATCH] BUG 13447: Fixed HTML Email Reports A tiny typo made in runreport.pl when updating it for bug 9530 lead to no body being attached to html emails. --- misc/cronjobs/runreport.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl index 6fcd03a..99bd22f 100755 --- a/misc/cronjobs/runreport.pl +++ b/misc/cronjobs/runreport.pl @@ -276,7 +276,7 @@ foreach my $report_id (@ARGV) { from => $from, contenttype => 'text/html', subject => encode('utf8', $subject ), - messsage => encode('utf8', $message ) + message => encode('utf8', $message ) } ); } else { -- 1.7.10.4