From 88c042730f500df5339ed813486b0f0fe59b8c21 Mon Sep 17 00:00:00 2001 From: Andrey Kuvshinov Date: Sat, 29 Aug 2020 12:52:45 +0300 Subject: [PATCH] delete debug mail --- app/routes/email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/email.php b/app/routes/email.php index 1c23d0a..dfe6e73 100644 --- a/app/routes/email.php +++ b/app/routes/email.php @@ -7,7 +7,7 @@ function sendmail($config, $mail){ $send = new PHPMailer; $send->isSMTP(); - $send->SMTPDebug=3; // Set mailer to use SMTP + //$send->SMTPDebug=3; // Set mailer to use SMTP $send->Host = $config['host']; // Specify main and backup SMTP servers $send->Username = $config['login']; // SMTP username $send->Password = $config['password'];