newTicket.php 896 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Mail;
  3. use App\Models\NotificationLog;
  4. use Exception;
  5. use Illuminate\Bus\Queueable;
  6. use Illuminate\Contracts\Queue\ShouldQueue;
  7. use Illuminate\Mail\Mailable;
  8. use Illuminate\Queue\SerializesModels;
  9. class newTicket extends Mailable implements ShouldQueue {
  10. use Queueable, SerializesModels;
  11. protected $id; // 邮件记录ID
  12. protected $title; // 工单标题
  13. protected $content; // 工单内容
  14. public function __construct($id, $title, $content) {
  15. $this->id = $id;
  16. $this->title = $title;
  17. $this->content = $content;
  18. }
  19. public function build() {
  20. return $this->view('emails.newTicket')->subject('新工单提醒')->with([
  21. 'title' => $this->title,
  22. 'content' => $this->content
  23. ]);
  24. }
  25. // 发件失败处理
  26. public function failed(Exception $e) {
  27. NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
  28. }
  29. }