Commit 7ed2da0c94237ef5b0996fe1a1c819160b8480a1

Authored by Administrator
1 parent ea45971d

14.06.16

Showing 1 changed file with 6 additions and 2 deletions   Show diff stats
common/widgets/Mailer.php
@@ -31,9 +31,13 @@ class Mailer extends Widget{ @@ -31,9 +31,13 @@ class Mailer extends Widget{
31 'allow_self_signed' => true 31 'allow_self_signed' => true
32 ) 32 )
33 ); 33 );
  34 + $mail->Host = "";
  35 + $mail->SMTPDebug = true;
  36 + $mail->SMTPAuth = true;
  37 + $mail->Port = 25;
34 $mail->CharSet = 'UTF-8'; 38 $mail->CharSet = 'UTF-8';
35 - $mail->Username = "adwords@artweb.ua";  
36 - $mail->Password = "eks,ybcm5hfp"; 39 + $mail->Username = "exrtem";
  40 + $mail->Password = "8D3u1E9v";
37 $mail->SetFrom('dockdep@gmail.com'); 41 $mail->SetFrom('dockdep@gmail.com');
38 $mail->Subject = $this->subject; 42 $mail->Subject = $this->subject;
39 $mail->MsgHTML($this->render($this->type, ['params' => $this->params])); 43 $mail->MsgHTML($this->render($this->type, ['params' => $this->params]));