delete debug mail

This commit is contained in:
Andrey Kuvshinov
2020-08-29 12:52:45 +03:00
parent ff89fc80b4
commit 88c042730f

View File

@@ -7,7 +7,7 @@ function sendmail($config, $mail){
$send = new PHPMailer; $send = new PHPMailer;
$send->isSMTP(); $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->Host = $config['host']; // Specify main and backup SMTP servers
$send->Username = $config['login']; // SMTP username $send->Username = $config['login']; // SMTP username
$send->Password = $config['password']; $send->Password = $config['password'];