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:
parent
c1621de8a5
commit
36f56b8177
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue