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