user = $user; $this->code = $code; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: '👋🏻 Welcome to STEMMechanics!', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.user.email_verify', text: 'emails.user.email_verify_plain', ); } }