email = $email; $this->company = $company; $this->url = MagicLink::create($email, $company->id, $redirect); } /** * Build the message. * * @return $this */ public function build() { return $this ->subject(ctrans('texts.account_passwordless_login')) ->view('email.billing.passwordless-login', [ 'logo' => $this->company->present()->logo(), 'settings' => $this->company->settings, ]); } }