mailer('cp_'.MailPurpose::SYSTEM); } public function envelope(): Envelope { return $this->mailboxEnvelope(MailPurpose::SYSTEM, __('reset_password.subject')); } public function content(): Content { return new Content(view: 'mail.reset-password', with: [ 'name' => $this->user->name, 'url' => $this->url, 'minutes' => $this->minutes, ]); } }