Horde_Imap_Client_Base::sendID PHP Method

sendID() public method

Send ID information to the IMAP server (RFC 2971).
public sendID ( array $info = null )
$info array Overrides the value of the 'id' param and sends this information instead.
    public function sendID($info = null)
    {
        if (!$this->_capability('ID')) {
            throw new Horde_Imap_Client_Exception_NoSupportExtension('ID');
        }
        $this->_sendID(is_null($info) ? $this->getParam('id') ?: array() : $info);
    }