引入文件下载 https://download.csdn.net/download/qq_39296114/85258635
function send_mail($result) {
$email_array = explode(',',$this->email);
foreach ($email_array as $i=>$v){
$url = $this->url;
$tomail = $v;
$name = "收件人昵称";
$subject='新增文章通知';
$body="<a href=".$url."><h2>".$this->crontab_name."</h2></a>"."<br/>".$result;
$attachment = null;
include_once '../extend/PHPMailer/src/Exception.php';
include_once '../extend/PHPMailer/src/PHPMailer.php';
include_once '../extend/PHPMailer/src/SMTP.php';
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->IsSMTP();
$mail->SMTPDebug = 0;
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'ssl';
$mail->Host = "smtp.qq.com";
$mail->Port = 465;
$mail->Username = "************@qq.com";
$mail->Password = "***********";
$mail->SetFrom('********@qq.com', '发送人昵称');
$replyEmail = '';
$replyName = '';
$mail->AddReplyTo($replyEmail, $replyName);
$mail->Subject = $subject;
$mail->MsgHTML($body);
$mail->AddAddress($tomail, $name);
$mail->Send();
}
}
|