From 61e3465797dab304ec7b0214fff59ca93917b813 Mon Sep 17 00:00:00 2001 From: Krombel Date: Thu, 24 Jan 2019 01:47:13 +0100 Subject: [PATCH] disable debug output of PHPMailer --- mail_templates.php | 1 - 1 file changed, 1 deletion(-) diff --git a/mail_templates.php b/mail_templates.php index ab22402..5978725 100644 --- a/mail_templates.php +++ b/mail_templates.php @@ -28,7 +28,6 @@ function send_mail($receiver, $subject, $body) { $mail = new PHPMailer(true); try { $mail->CharSet = 'utf-8'; // Enable utf-8 support for umlauts - $mail->SMTPDebug = 2; // Enable verbose debug output if (is_array($config["smtp"])) { $smtp_conf = $config["smtp"];