From c7ddac5c656b129b91559b1a8a80c03b31eb3074 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 26 Aug 2007 11:35:54 +0100 Subject: [PATCH] phpmailer: set utf-8 charset --- functions.php | 2 ++ 1 file changed, 2 insertions(+) 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"]); -- 2.39.2