• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/calendar/notification/smsservice.php
  • Класс: Bitrix\Crm\Integration\Calendar\Notification\SmsService
  • Вызов: SmsService::sendCrmSharingInvited
public function sendCrmSharingInvited(): bool
{
	$manager = Sharing\Helper::getOwnerInfo($this->crmDealLink->getOwnerId());

	$message = Loc::getMessage('CRM_CALENDAR_SHARING_EVENT_INVITATION', [
		'#FIRST_NAME#' => $manager['name'],
		'#URL#' => Sharing\Helper::getShortUrl($this->crmDealLink->getUrl()),
	]);

	return $this->sendMessage($message);
}