• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/entity/contact.php
  • Класс: BitrixSenderEntityContact
  • Вызов: Contact::removeFromList
public function removeFromList($listId)
{
	if (!$this->getId())
	{
		return false;
	}

	return ContactListTable::delete(array(
		'CONTACT_ID' => $this->getId(),
		'LIST_ID' => $listId
	))->isSuccess();
}