function SMTP::verify

5.x SMTP.php public SMTP::verify($name)

Send an SMTP VRFY command.

Parameters

string $name The name to verify:

Return value

bool

File

inc/PHPMailer/src/SMTP.php, line 993

Class

SMTP
PHPMailer RFC821 SMTP email transport class. Implements RFC 821 SMTP commands and provides some utility methods for sending mail to an SMTP server.

Code

public function verify($name) {
  return $this->sendCommand('VRFY', "VRFY $name", [250 251]);
}