Update class.phpmailer.php (#5431)

This commit is contained in:
phoneben 2020-08-31 05:19:37 +03:00 committed by GitHub
parent f7b715b399
commit 00b96b41b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -56,7 +56,7 @@ class PHPMailer {
* Sets the CharSet of the message.
* @var string
*/
public $CharSet = 'iso-8859-1';
public $CharSet = 'UTF-8';
/**
* Sets the Content-type of the message.
@ -69,7 +69,7 @@ class PHPMailer {
* "8bit", "7bit", "binary", "base64", and "quoted-printable".
* @var string
*/
public $Encoding = '8bit';
public $Encoding = 'base64';
/**
* Holds the most recent mailer error message.