Update class.phpmailer.php (#5431)

This commit is contained in:
phoneben
2020-08-30 20:19:37 -06:00
committed by GitHub
parent f7b715b399
commit 00b96b41b8
+2 -2
View File
@@ -56,7 +56,7 @@ class PHPMailer {
* Sets the CharSet of the message. * Sets the CharSet of the message.
* @var string * @var string
*/ */
public $CharSet = 'iso-8859-1'; public $CharSet = 'UTF-8';
/** /**
* Sets the Content-type of the message. * Sets the Content-type of the message.
@@ -69,7 +69,7 @@ class PHPMailer {
* "8bit", "7bit", "binary", "base64", and "quoted-printable". * "8bit", "7bit", "binary", "base64", and "quoted-printable".
* @var string * @var string
*/ */
public $Encoding = '8bit'; public $Encoding = 'base64';
/** /**
* Holds the most recent mailer error message. * Holds the most recent mailer error message.