1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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 closeTicket extends Mailable implements ShouldQueue
- {
- use Queueable;
- use 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(): closeTicket
- {
- return $this->view('emails.closeTicket')->subject('工单关闭提醒')->with([
- 'title' => $this->title,
- 'content' => $this->content,
- ]);
- }
- // 发件失败处理
- public function failed(Exception $e): void
- {
- NotificationLog::whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
- }
- }
|