summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-26 11:35:54 +0100
committerAndrew Dolgov <[email protected]>2007-08-26 11:35:54 +0100
commitc7ddac5c656b129b91559b1a8a80c03b31eb3074 (patch)
treed1252af038d6790b8699e539957ee80ea81de1b1 /functions.php
parent776d46f9598d5a07688bffac032035bd705f62c1 (diff)
phpmailer: set utf-8 charset
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index e2915aa00..ba0fd6b1d 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"]);