• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/automaticaction.php
  • Класс: BitrixImOpenLinesAutomaticAction
  • Вызов: AutomaticAction::automaticAddMessage
public function automaticAddMessage($messageId, $finish = false, $vote = false)
{
	//Welcome
	(new AutomaticActionWelcome($this->sessionManager))->automaticAddMessage();

	//Work Time
	(new AutomaticActionWorkTime($this->sessionManager))->automaticAddMessage($finish, $vote);

	//Automatic action
	$this->sessionManager->execAutoAction([
		'MESSAGE_ID' => $messageId,
	]);

	return true;
}