content = $content; $this->siteLogo = $siteLogo; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Reply To Mail', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'mail.reply_to_mail', with: [ 'content' => $this->content, 'siteLogo' => $this->siteLogo, ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }