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.

Signed-off-by: Chris <chris@bigballofwax.co.nz>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
Martin Renvoize 2014-12-12 12:18:47 +00:00 committed by Tomas Cohen Arazi
parent c1621de8a5
commit 36f56b8177

View file

@ -276,7 +276,7 @@ foreach my $report_id (@ARGV) {
from => $from, from => $from,
contenttype => 'text/html', contenttype => 'text/html',
subject => encode('utf8', $subject ), subject => encode('utf8', $subject ),
messsage => encode('utf8', $message ) message => encode('utf8', $message )
} }
); );
} else { } else {