user = $user; $this->code = $code; $this->new_email = $new_email; } /** * Get the message envelope. * * @return \Illuminate\Mail\Mailables\Envelope */ public function envelope() { return new Envelope( subject: '👋🏻 Lets change your email!', ); } /** * Get the message content definition. * * @return \Illuminate\Mail\Mailables\Content */ public function content() { return new Content( view: 'emails.user.change_email_verify', text: 'emails.user.change_email_verify_plain', ); } }