PHPMailer\PHPMailer\SMTP::recipient PHP Метод

recipient() публичный Метод

Sets the TO argument to $toaddr. Returns true if the recipient was accepted false if it was rejected. Implements from rfc 821: RCPT TO:
public recipient ( string $address ) : boolean
$address string The address the message is being sent to
Результат boolean
    public function recipient($address)
    {
        return $this->sendCommand('RCPT TO', 'RCPT TO:<' . $address . '>', [250, 251]);
    }