@@ -, +, @@ name/code TEST and message body "testing". SELECT "" as `borrowernumber`, "to@example.com", as `email`, "from@example.com" as `from`; where "" is a valid borrowernumber. where is the report id. set to text/html; charset="UTF-8". as rendered html. --- C4/Reports/Guided.pm | 1 + 1 file changed, 1 insertion(+) --- a/C4/Reports/Guided.pm +++ a/C4/Reports/Guided.pm @@ -1044,6 +1044,7 @@ sub EmailReport { message_transport_type => 'email', }); $letter = $letter->unblessed; + $letter->{'content-type'} = 'text/html; charset="UTF-8"' if $letter->{'is_html'}; my $report = Koha::Reports->find( $report_id ); my $sql = $report->savedsql; --