Jrean\UserVerification\UserVerification::sendQueue PHP Method

sendQueue() public method

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