onQueue('mail'); } public function envelope(): Envelope { return new Envelope( subject: 'Skinbase email change verification code', ); } public function content(): Content { return new Content( view: 'emails.email-change-verification-code', with: [ 'code' => $this->code, 'expiresInMinutes' => $this->expiresInMinutes, ], ); } public function attachments(): array { return []; } }