From 92a7c289e4b42170bd1bf323bc5e1be57bf81b1d Mon Sep 17 00:00:00 2001 From: Vitaliy Date: Thu, 16 Jun 2016 16:40:21 +0300 Subject: [PATCH] 14.06.16 --- common/widgets/Mailer.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/widgets/Mailer.php b/common/widgets/Mailer.php index 0d5503e..003a104 100755 --- a/common/widgets/Mailer.php +++ b/common/widgets/Mailer.php @@ -27,11 +27,11 @@ class Mailer extends Widget{ $mail->Host = "195.248.225.139"; $mail->SMTPDebug = true; - $mail->SMTPAuth = true; - $mail->Port = 587; + $mail->SMTPAuth = 0; + $mail->Port = 25; $mail->CharSet = 'UTF-8'; - $mail->Username = "exrtem"; - $mail->Password = "8D3u1E9v"; + $mail->Username = ""; + $mail->Password = ""; $mail->SetFrom('dockdep@gmail.com'); $mail->Subject = $this->subject; $mail->MsgHTML($this->render($this->type, ['params' => $this->params])); -- libgit2 0.21.4