代码拉取完成,页面将自动刷新
<?php
namespace App\Jobs;
use App\Mail\GlobalMail;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Mail;
class SendEmail implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $email;
protected $blade;
protected $subject;
protected $data;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($email, $subject, $data=[], $blade)
{
//
$this->email = $email;
$this->blade = $blade;
$this->subject = $subject;
$this->data = $data;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
Log::info('SendEmail_to_'.$this->email.'_start');
Mail::to($this->email)->send(new GlobalMail($this->blade, $this->subject, $this->data));
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。