sendVerifyCode.php 827 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 sendVerifyCode extends Mailable implements ShouldQueue {
  10. use Queueable, SerializesModels;
  11. protected $id; // 邮件记录ID
  12. protected $code; // 要发送的验证码
  13. public function __construct($id, $code) {
  14. $this->id = $id;
  15. $this->code = $code;
  16. }
  17. public function build(): sendVerifyCode {
  18. return $this->view('emails.sendVerifyCode')->subject('发送注册验证码')->with([
  19. 'code' => $this->code
  20. ]);
  21. }
  22. // 发件失败处理
  23. public function failed(Exception $e): void {
  24. NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
  25. }
  26. }