Skip to content

Commit

Permalink
Fixed #483 - Autoresponder: Problems displaying umlauts - Thanks to J…
Browse files Browse the repository at this point in the history
…oximu for this fix
  • Loading branch information
Torsten Widmann committed Aug 7, 2012
1 parent 91614bc commit 73d97b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/messenger/imscp-arpl-msgr
Expand Up @@ -38,6 +38,7 @@ use Mail::Address;
use MIME::Entity;
use Email::Simple;
use Data::Dumper;
use Encode;

newDebug('imscp-arpl-msgr/imscp-arpl-msgr.log');

Expand Down Expand Up @@ -138,7 +139,7 @@ sub arpl_engine {
Type => "text/plain; charset=utf-8",
Encoding => "7bit",
Description => "Mail User Autoreply Message",
Data => $text
Data => Encode::encode("UTF-8", $text)
);

$out->attach(
Expand Down

0 comments on commit 73d97b2

Please sign in to comment.