From: Jan Schneider Date: Sun, 6 Sep 2009 16:40:29 +0000 (+0200) Subject: Use the configured charset for the recipient address encoding. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=02175634116165c272860edd2096b39998c051cd;p=horde.git Use the configured charset for the recipient address encoding. --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index b7d87660a..8215bafad 100644 --- a/framework/Mime/lib/Horde/Mime/Part.php +++ b/framework/Mime/lib/Horde/Mime/Part.php @@ -1420,7 +1420,7 @@ class Horde_Mime_Part } } - $result = $mailer->send(Horde_Mime::encodeAddress($email), $headers->toArray(array('charset' => $this->getCharset())), $msg); + $result = $mailer->send(Horde_Mime::encodeAddress($email, $this->getCharset()), $headers->toArray(array('charset' => $this->getCharset())), $msg); $this->_basepart = $old_basepart;