orgUser = $orgUser; $this->otp = $otp; } /** * Build the message. * * @return $this */ public function build() { // $orgUser = $this->orgUser; // return $this->view('view.name'); return $this->from('your_email@example.com') ->subject('Airtime Sales Portal OTP Code') ->view('emails.dealer_topup_otp') ->with('details', $this->orgUser) ->with('otp', $this->otp); } }