inquiry = $inquiry; $this->replyMessage = $replyMessage; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Re: ' . $this->inquiry->subject, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.inquiry_reply', ); } /** * Get the attachments for the message. */ public function attachments(): array { return []; } }