Jrean\UserVerification\UserVerification::sendQueueOn PHP Method

sendQueueOn() public method

Queue on the given queue and send by e-mail a link containing the verification token.
public sendQueueOn ( string $queue, Illuminate\Contracts\Auth\Authenticatable $user, string $subject = null, string $from = null, string $name = null ) : boolean
$queue string
$user Illuminate\Contracts\Auth\Authenticatable
$subject string
$from string
$name string
return boolean
    public function sendQueueOn($queue, AuthenticatableContract $user, $subject = null, $from = null, $name = null)
    {
        if (!$this->isCompliant($user)) {
            throw new ModelNotCompliantException();
        }
        return (bool) $this->emailQueueOnVerificationLink($queue, $user, $subject, $from, $name);
    }