• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/posting/builder.php
  • Класс: BitrixSenderPostingBuilder
  • Вызов: Builder::stopRecipientListBuilding
protected function stopRecipientListBuilding()
{
	RecipientBuilderJob::removeAgentFromDB($this->postingData['ID']);
	RecipientBuilderJob::addEventAgent($this->postingData['ID']);

	ModelLetterTable::update($this->postingData['MAILING_CHAIN_ID'], [
		'WAITING_RECIPIENT' => $this->postingData['MAILING_STATUS'] !== ModelLetterTable::STATUS_END ?  'Y' : 'N'
	]);

	throw new NotCompletedException();
}