From f09f86f7b34fbecfa7c07cd8187eaa0580d85258 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Tue, 16 Jan 2018 23:41:23 -0300 Subject: [PATCH] fix bug #95 --- server/libs/MailSender.php | 1 + 1 file changed, 1 insertion(+) diff --git a/server/libs/MailSender.php b/server/libs/MailSender.php index 62bbaed3..1d6b2172 100755 --- a/server/libs/MailSender.php +++ b/server/libs/MailSender.php @@ -70,6 +70,7 @@ class MailSender { $this->mailerInstance->From = $this->mailOptions['from']; $this->mailerInstance->FromName = $this->mailOptions['fromName']; + $this->mailerInstance->CharSet = 'UTF-8'; $this->mailerInstance->isSMTP(); $this->mailerInstance->SMTPAuth = true;