Mailer.php
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace common\widgets;
use yii\base\Widget;
class Mailer extends Widget{
public $message;
public $email;
public $text;
public $subject;
public $type;
public $params;
public function init(){
parent::init();
}
public function run(){
$mail = new \PHPMailer();
$mail->IsSMTP();
$mail->CharSet = 'UTF-8';
// $mail->SMTPDebug = 1;
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'ssl';
$mail->Host = "smtp.gmail.com";
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username = "login@gmail.com"; // Google email account
$mail->Password = "password"; // Password to this account
$mail->SetFrom("leaf@electrocars.ua");
$mail->isHTML(true);
$mail->Subject = $this->subject;
$mail->Body = $this->render($this->type, ['params' => $this->params]);
$mail->AddAddress('zhegal@gmail.com');
$mail->AddAddress('pmartweb1@gmail.com');
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message has been sent";
}
}
}