user = $o; } /** * Build the message. * * @return $this */ public function build() { Config::set('site',$this->user->site); return $this ->markdown('email.system.test_email') ->subject('Just a test...') ->with([ 'site'=>$this->user->site, 'user'=>$this->user, ]); } }