otp = $otp; } /** * Get the message envelope. * * @return \Illuminate\Mail\Mailables\Envelope */ public function envelope() { return new Envelope( subject: 'Forget Password Otp', ); } /** * Get the message content definition. * * @return \Illuminate\Mail\Mailables\Content */ public function content() { return new Content( markdown: 'theme::emails.forgot-password-otp', with: [ 'otp' => $this->otp, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments() { return []; } }