userTrafficWarning.php 869 B

123456789101112131415161718192021222324252627282930313233
  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 userTrafficWarning extends Mailable implements ShouldQueue {
  10. use Queueable, SerializesModels;
  11. protected $id; // 邮件记录ID
  12. protected $usedPercent; // 已使用百分比
  13. public function __construct($id, $usedPercent) {
  14. $this->id = $id;
  15. $this->usedPercent = $usedPercent;
  16. }
  17. public function build(): userTrafficWarning {
  18. return $this->view('emails.userTrafficWarning')->subject('流量警告')->with([
  19. 'usedPercent' => $this->usedPercent
  20. ]);
  21. }
  22. // 发件失败处理
  23. public function failed(Exception $e): void {
  24. NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
  25. }
  26. }