PHPMailer\PHPMailer
SMTP::verify()
Send an SMTP VRFY command.
{} It's a method of the class: SMTP{}
No Hooks.
Return
true|false
.
Usage
$SMTP = new SMTP(); $SMTP->verify( $name );
- $name(string) (required)
- The name to verify
Code of SMTP::verify() SMTP::verify WP 6.0
public function verify($name) { return $this->sendCommand('VRFY', "VRFY $name", [250, 251]); }