芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Notifications/VerifyEmail.php
company = $notifiable->company; if (!$this->company) { $user = User::where('email', $notifiable->email)->latest()->first(); $this->company = $user->company; } URL::forceRootUrl(getDomainSpecificUrl(request()->root(), $this->company)); $this->verificationUrl = $this->verificationUrl($notifiable); return ['mail']; } /** * Build the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $this->company = $notifiable->company; $emailVerifyCode = '
' . $notifiable->email_verification_code . '
'; $content = __('superadmin.emailVerificationCode.line1') . '
' . new HtmlString($emailVerifyCode) . '
' . __('superadmin.emailVerificationCode.line2'); return parent::build() ->subject(Lang::get('Email verification code') . ' ' . config('app.name')) ->markdown('mail.email', [ 'content' => $content, 'notifiableName' => $notifiable->name ]); } /** * Get the verify email notification mail message for the given URL. * * @param string $url * @return \Illuminate\Notifications\Messages\MailMessage */ protected function buildMailMessage($url) { return $this->build() ->subject(Lang::get('Verify Email Address')) ->line(Lang::get('Please click the button below to verify your email address.')) ->action(Lang::get('Verify Email Address'), $url) ->line(Lang::get('If you did not create an account, no further action is required.')) ->line(__('superadmin.verificationExpireIn', ['minutes' => Config::get('auth.verification.expire', 60)])); } /** * Get the verification URL for the given notifiable. * * @param mixed $notifiable * @return string */ protected function verificationUrl($notifiable) { if (static::$createUrlCallback) { return call_user_func(static::$createUrlCallback, $notifiable); } $url = URL::temporarySignedRoute( 'verification.verify', now()->addMinutes(120), [ 'id' => $notifiable->getKey(), 'hash' => sha1($notifiable->getEmailForVerification()), ] ); return $url; } /** * Set a callback that should be used when creating the email verification URL. * * @param \Closure $callback * @return void */ public static function createUrlUsing($callback) { static::$createUrlCallback = $callback; } /** * Set a callback that should be used when building the notification mail message. * * @param \Closure $callback * @return void */ public static function toMailUsing($callback) { static::$toMailCallback = $callback; } }