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'];