Files
ProxyPanel/app/Mail/newTicket.php
兔姬桑 71828a0ac5 数据库改版 +Rule 编辑相关 (Rule未实际应用)
1. 规范化数据库数据;
2. 添加Rule相关页面
为未来加入web api做准备
2020-08-05 03:20:33 +08:00

37 lines
896 B
PHP

<?php
namespace App\Mail;
use App\Models\NotificationLog;
use Exception;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class newTicket extends Mailable implements ShouldQueue {
use Queueable, SerializesModels;
protected $id; // 邮件记录ID
protected $title; // 工单标题
protected $content; // 工单内容
public function __construct($id, $title, $content) {
$this->id = $id;
$this->title = $title;
$this->content = $content;
}
public function build() {
return $this->view('emails.newTicket')->subject('新工单提醒')->with([
'title' => $this->title,
'content' => $this->content
]);
}
// 发件失败处理
public function failed(Exception $e) {
NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
}
}