X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FMailer%2FSendmail.pm;h=ea1e63b8a214e384143b71b330cda75655e569bb;hb=3b4068e20d8f7b044b9f85eccacac99ba3d453b3;hp=6b24ecdb5f134211fd52c5af65256399bfd13c67;hpb=b1c8169b306a97fe6a42d495d1cd68c465cebf41;p=kivitendo-erp.git diff --git a/SL/Mailer/Sendmail.pm b/SL/Mailer/Sendmail.pm index 6b24ecdb5..ea1e63b8a 100644 --- a/SL/Mailer/Sendmail.pm +++ b/SL/Mailer/Sendmail.pm @@ -2,6 +2,7 @@ package SL::Mailer::Sendmail; use strict; +use Encode; use IO::File; use SL::Template; @@ -17,7 +18,7 @@ sub init { Rose::Object::init(@_); - my $email = $self->mailer->recode($self->myconfig->{email}); + my $email = $::locale->is_utf8 ? Encode::encode('utf-8', $self->myconfig->{email}) : $self->myconfig->{email}; $email =~ s/[^\w\.\-\+=@]//ig; my %temp_form = ( %{ $self->form }, myconfig_email => $email ); @@ -26,6 +27,7 @@ sub init { $sendmail = $template->parse_block($sendmail); $self->{sendmail} = IO::File->new("|$sendmail") || die "sendmail($sendmail): $!"; + $self->{sendmail}->binmode(':utf8') if $::locale->is_utf8; } sub start_mail {