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