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