Skip to content
Snippets Groups Projects
Commit decd49bf authored by Ruben Estrada's avatar Ruben Estrada
Browse files

#1227 sets phpmailer encoding to the encoding specified in config.inc.php when...

#1227 sets phpmailer encoding to the encoding specified in config.inc.php when creating new instance of Vtiger_Mailer
parent 4d24a5b1
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,10 @@ class Vtiger_Mailer extends PHPMailer {
* Constructor
*/
function __construct() {
global $default_charset;
parent::__construct();
$this->initialize();
$this->CharSet = $default_charset;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment