PHPMailer\PHPMailer\POP3::getResponse PHP Method

getResponse() protected method

$size is the maximum number of bytes to retrieve
protected getResponse ( integer $size = 128 ) : string
$size integer
return string
    protected function getResponse($size = 128)
    {
        $response = fgets($this->pop_conn, $size);
        if ($this->do_debug >= 1) {
            echo "Server -> Client: {$response}";
        }
        return $response;
    }