• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/calendar/notification/notificationservice.php
  • Класс: Bitrix\Crm\Integration\Calendar\Notification\NotificationService
  • Вызов: NotificationService::sendCrmSharingInvited
public function sendCrmSharingInvited(): bool
{
	$manager = Sharing\Helper::getOwnerInfo($this->crmDealLink->getOwnerId());
	$placeholders = [
		'NAME' => Sharing\Helper::getPersonFullNameLoc($manager['name'], $manager['lastName']),
		'URL' => Sharing\Helper::getShortUrl($this->crmDealLink->getUrl()),
		'FIRST_NAME' => $manager['name'], // for sms
	];

	return $this->sendMessage(self::TEMPLATE_SHARING_EVENT_INVITATION, $placeholders);
}