Jrean\UserVerification\UserVerification::sendLaterOn PHP Метод

sendLaterOn() публичный Метод

Send later on the given queue by e-mail a link containing the verification token.
public sendLaterOn ( string $queue, integer $seconds, Illuminate\Contracts\Auth\Authenticatable $user, string $subject = null, string $from = null, string $name = null ) : boolean
$queue string
$seconds integer
$user Illuminate\Contracts\Auth\Authenticatable
$subject string
$from string
$name string
Результат boolean
    public function sendLaterOn($queue, $seconds, AuthenticatableContract $user, $subject = null, $from = null, $name = null)
    {
        if (!$this->isCompliant($user)) {
            throw new ModelNotCompliantException();
        }
        return (bool) $this->emailLaterOnVerificationLink($queue, $seconds, $user, $subject, $from, $name);
    }