userExpireWarningToday.php 737 B

1234567891011121314151617181920212223242526272829
  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 userExpireWarningToday extends Mailable implements ShouldQueue {
  10. use Queueable, SerializesModels;
  11. protected $id; // 邮件记录ID
  12. public function __construct($id) {
  13. $this->id = $id;
  14. }
  15. public function build(): userExpireWarningToday {
  16. return $this->view('emails.userExpireWarningToday')->subject('账号过期提醒');
  17. }
  18. // 发件失败处理
  19. public function failed(Exception $e): void {
  20. NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
  21. }
  22. }