POP3::sendString PHP Method

sendString() private method

Send a string down the open socket connection to the POP3 server
private sendString ( string $string ) : integer
$string string
return integer
    private function sendString($string)
    {
        $bytes_sent = fwrite($this->pop_conn, $string, strlen($string));
        return $bytes_sent;
    }