registration = $registration; $this->newsletter = $newsletter; } /** * Build the message. * * @return $this */ public function build() { $registration = $this->registration ; $newsletter = $this->newsletter; return $this->from('noreply@consultancy.com','Consultancy')->view('mail.sendnewsletter',compact('registration','newsletter')); } }