From: Andrew Dolgov Date: Sun, 26 Aug 2007 10:35:54 +0000 (+0100) Subject: phpmailer: set utf-8 charset X-Git-Tag: 1.2.15~27 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=c7ddac5c656b129b91559b1a8a80c03b31eb3074;p=tt-rss.git phpmailer: set utf-8 charset --- diff --git a/functions.php b/functions.php index e2915aa0..ba0fd6b1 100644 --- a/functions.php +++ b/functions.php @@ -3174,6 +3174,8 @@ $mail->PluginDir = "phpmailer/"; $mail->SetLanguage("en", "phpmailer/language/"); + $mail->CharSet = "UTF-8"; + $mail->From = DIGEST_FROM_ADDRESS; $mail->FromName = DIGEST_FROM_NAME; $mail->AddAddress($line["email"], $line["login"]);