1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Minor, also update PHPMailerLite to use quoted-printable

Summary: See T5927.

Auditors: btrahan
This commit is contained in:
epriestley 2014-08-20 17:18:16 -07:00
parent d1c3915e3a
commit b7ad48aa50

View file

@ -15,6 +15,7 @@ class PhabricatorMailImplementationPHPMailerLiteAdapter
require_once $root.'/externals/phpmailer/class.phpmailer-lite.php'; require_once $root.'/externals/phpmailer/class.phpmailer-lite.php';
$this->mailer = new PHPMailerLite($use_exceptions = true); $this->mailer = new PHPMailerLite($use_exceptions = true);
$this->mailer->CharSet = 'utf-8'; $this->mailer->CharSet = 'utf-8';
$this->mailer->Encoding = 'quoted-printable';
// By default, PHPMailerLite sends one mail per recipient. We handle // By default, PHPMailerLite sends one mail per recipient. We handle
// multiplexing higher in the stack, so tell it to send mail exactly // multiplexing higher in the stack, so tell it to send mail exactly