• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/transport/adapter.php
  • Класс: Bitrix\Sender\Transport\Adapter
  • Вызов: Adapter::sendConsent
public function sendConsent($message, $data) : ?bool
{
	if(!$this->isConsentAvailable())
	{
		return false;
	}

	$builder = ConsentFactory::getConsentBuilder($this->transport::CODE)->setFields($data);
	return $this->sendConsentByBuilder($message, $builder);
}