otp = $otp; } /** * Build the message. * * @return $this */ public function build() { return $this ->from(env('MAIL_FROM_ADDRESS', 'rifaulardiyanto@gmail.com')) ->subject('Kode OTP Anda') ->view('emails.otp') ->with(['otp' => $this->otp]); } }