• Модуль: mail
  • Путь к файлу: ~/bitrix/modules/mail/classes/general/imap.php
  • Класс: CMailImap
  • Вызов: CMailImap::sendCommand
protected function sendCommand($command)
{
	$this->counter++;

	$tag = sprintf('A%03u', $this->counter);

	$command = sprintf('%s %s', $tag, $command);
	$bytes = fputs($this->imap_stream, $command);

	if ($bytes < mb_strlen($command))
		throw new Exception(GetMessage('MAIL_IMAP_ERR_COMMUNICATE'));

	return $tag;
}