PHPMailer\PHPMailer\POP3::sendString PHP 메소드

sendString() 보호된 메소드

Send raw data to the POP3 server.
protected sendString ( string $string ) : integer
$string string
리턴 integer
    protected function sendString($string)
    {
        if ($this->pop_conn) {
            if ($this->do_debug >= 2) {
                //Show client messages when debug >= 2
                echo "Client -> Server: {$string}";
            }
            return fwrite($this->pop_conn, $string, strlen($string));
        }
        return 0;
    }