data = $data; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'New Contact Message', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.formpick', // <-- your blade file with: ['data' => $this->data] // Pass data to the view ); } /** * Get the attachments for the message. */ public function attachments(): array { return []; } }