diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2007-08-26 11:35:54 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2007-08-26 11:35:54 +0100 |
| commit | c7ddac5c656b129b91559b1a8a80c03b31eb3074 (patch) | |
| tree | d1252af038d6790b8699e539957ee80ea81de1b1 | |
| parent | 776d46f9598d5a07688bffac032035bd705f62c1 (diff) | |
phpmailer: set utf-8 charset
| -rw-r--r-- | functions.php | 2 |
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"]); |