array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.conversation') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'content' => $this->array['content'], 'link' => $this->array['link'], 'sender' => $this->array['sender'], 'details' => $this->array['details'] ]); } }