id = $id; $this->activeUserUrl = $activeUserUrl; } public function build() { return $this->view('emails.activeUser')->subject('激活账号')->with([ 'activeUserUrl' => $this->activeUserUrl ]); } // 发件失败处理 public function failed(Exception $e) { NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]); } }