Commit 92a7c289e4b42170bd1bf323bc5e1be57bf81b1d

Authored by Administrator
1 parent 2d6b0a8d

14.06.16

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
common/widgets/Mailer.php
... ... @@ -27,11 +27,11 @@ class Mailer extends Widget{
27 27  
28 28 $mail->Host = "195.248.225.139";
29 29 $mail->SMTPDebug = true;
30   - $mail->SMTPAuth = true;
31   - $mail->Port = 587;
  30 + $mail->SMTPAuth = 0;
  31 + $mail->Port = 25;
32 32 $mail->CharSet = 'UTF-8';
33   - $mail->Username = "exrtem";
34   - $mail->Password = "8D3u1E9v";
  33 + $mail->Username = "";
  34 + $mail->Password = "";
35 35 $mail->SetFrom('dockdep@gmail.com');
36 36 $mail->Subject = $this->subject;
37 37 $mail->MsgHTML($this->render($this->type, ['params' => $this->params]));
... ...