data = $data; } public function envelope(): Envelope { return new Envelope( subject: 'New Demo Request from ' . $this->data['name'] . ' — NNT ERP', ); } public function content(): Content { return new Content( markdown: 'emails.demo-request', with: ['data' => $this->data], ); } public function attachments(): array { return []; } }