From: Bernd Bleßmann Date: Tue, 30 Oct 2012 12:56:51 +0000 (+0100) Subject: charset für Mailer bei Mahnungen setzen. X-Git-Tag: release-3.0.0beta1~65^2~1 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e67ecbadebc7bfb147ea800bfd863604171502ce;p=kivitendo-erp.git charset für Mailer bei Mahnungen setzen. --- diff --git a/SL/DN.pm b/SL/DN.pm index 94e5b7708..46749ab37 100644 --- a/SL/DN.pm +++ b/SL/DN.pm @@ -368,6 +368,7 @@ sub send_email { my $template = SL::Template::create(type => 'PlainText', form => $form, myconfig => $myconfig); my $mail = Mailer->new(); + $mail->{charset} = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET; $mail->{from} = $myconfig->{email}; $mail->{to} = $ref->{recipient}; $mail->{subject} = $template->parse_block($ref->{email_subject});