Merge pull request #205 from evazzadeh/patch-5

add charset for sending email
This commit is contained in:
Pep 2015-06-16 11:48:19 -04:00
commit 27769143a9
1 changed files with 1 additions and 0 deletions

View File

@ -388,6 +388,7 @@ function psm_update_available() {
function psm_build_mail($from_name = null, $from_email = null) {
$phpmailer = new \PHPMailer();
$phpmailer->Encoding = "base64";
$phpmailer->CharSet = 'UTF-8';
$phpmailer->SMTPDebug = false;
if(psm_get_conf('email_smtp') == '1') {