remind_expire) { $this->remindExpire($user); } } } private function remindExpire ($user) { if (($user->expired_at - 86400) < time() && $user->expired_at > time()) { $this->dispatch(new SendEmail([ 'email' => $user->email, 'subject' => '在' . config('v2board.app_name', 'V2board') . '的服务即将到期', 'template_name' => 'mail.sendRemindExpire', 'template_value' => [ 'name' => config('v2board.app_name', 'V2Board') ] ])); } } }