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