Fix phpmailer compatibility with latest stable friendica #845

Merged
kecalcze merged 2 commits from UpdatePHPMailer into develop 2019-04-12 14:24:37 +02:00
Showing only changes of commit aa9a32a959 - Show all commits

View file

@ -50,6 +50,9 @@ function phpmailer_emailer_send_prepare(App $a, array &$b)
// Enable verbose debug output
$mail->SMTPDebug = 2;
*/
// Setup encoding.
$mail->CharSet = 'UTF-8';
$mail->Encoding = 'base64';
// Specify main and backup SMTP servers
$mail->Host = Config::get('phpmailer', 'smtp_server');
$mail->Port = Config::get('phpmailer', 'smtp_port');