• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/agent/notice/notifyagent.php
  • Класс: Bitrix\Crm\Agent\Notice\NotifyAgent
  • Вызов: NotifyAgent::notifyAboutRepeatLead
static function notifyAboutRepeatLead()
{
	Notification::create()
		->withMessage(Loc::getMessage('CRM_AGENT_NOTICE_NOTIFY_AGENT_ABOUT_REPEAT_LEAD'))
		->toList(UserList::getPortalAdmins())
		->toList(UserList::getLeadAssignedUsers())
		->toList(UserList::getContactAssignedUsers())
		->toList(UserList::getCompanyAssignedUsers())
		->send();
}