芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Mail/ContactMailManager.php
array = $array; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.contact') ->from($this->array['from'], env('MAIL_FROM_NAME')) ->subject($this->array['subject']) ->with([ 'name' => $this->array['name'], 'email' => $this->array['email'], 'phone' => $this->array['phone'], 'content' => $this->array['content'] ]); } }