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