mailer(MailCatalogue::mailer('dormant-warning')); } public function envelope(): Envelope { return $this->mailboxEnvelope(MailPurpose::SYSTEM, __('dormant_mail.subject'), 'dormant-warning'); } public function content(): Content { return new Content(view: 'mail.dormant-warning', with: [ 'name' => (string) $this->user->name, 'days' => $this->days, 'loginUrl' => route('login'), ]); } }