newUser = $newUser; } /** * Build the message. * * @return $this */ public function build() { // return $this->view('view.name'); return $this->from('target@example.com') ->subject('Welcome to Airtime Sales Portal') ->view('emails.newuser') ->with('details', $this->newUser); } }