• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/posting.php
  • Класс: BitrixSenderPostingTable
  • Вызов: PostingTable::getRecipientCount
static function getRecipientCount($id, $status = '')
{
	$count = 0;

	$ar = static::getRecipientCountByStatus($id);
	if ($status != '')
		$count = (array_key_exists($status, $ar) ? $ar[$status] : 0);
	else
		foreach ($ar as $k => $v) $count += $v;

	return $count;
}