• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/search/content.php
  • Класс: Bitrix\Sender\Search\Content
  • Вызов: Content::addRecipient
public function addRecipient($code, $typeId)
{
	$code = Recipient\Normalizer::normalize($code, $typeId);
	if($code && Recipient\Validator::validate($code, $typeId))
	{
		$this->addText($code);
	}

	return $this;
}