• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/sms/provider/smsru.php
  • Класс: Bitrix\Crm\Integration\Sms\Provider\SmsRu
  • Вызов: SmsRu::sendConfirmationCode
public function sendConfirmationCode()
{
	if ($this->isRegistered())
	{
		$ownerInfo = $this->getOwnerInfo();
		$result = $this->register(array(
			'user_phone' => $ownerInfo['phone'],
			'user_firstname' => $ownerInfo['firstName'],
			'user_lastname' => $ownerInfo['lastName'],
			'user_email' => $ownerInfo['email'],
		));
	}
	else
	{
		$result = new Result();
		$result->addError(new Error('Provider is not registered.'));
	}

	return $result;
}