token = $token; $this->user = $user; } /** * Build the message. */ public function build(): self { return $this->markdown('emails.auth-api-expiration-reminder', [ 'profileUrl' => URL::to('user/profile'), 'tokenName' => $this->token->name, ]) ->subject(__('Your API token will expire in 7 days!')); } }