• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/notification/mail.php
  • Класс: BitrixCalendarSharingNotificationMail
  • Вызов: Mail::getBaseMailParams
protected function getBaseMailParams(string $ownerName): array
{
	return [
		'EVENT_NAME' => SharingSharingEventManager::getSharingEventNameByUserName($ownerName),
		'EVENT_DATE' => $this->getFormattedEventDate(),
		'EVENT_TIME' => $this->getFormattedEventTimeInterval(),
		'TIMEZONE' => SharingHelper::formatTimezone($this->event->getStartTimeZone()),
		'CALENDAR_MONTH_NAME' => $this->getCalendarMonthName(),
		'CALENDAR_DAY' => $this->getCalendarDay(),
		'CALENDAR_TIME' => $this->getCalendarTime(),
		'ABUSE_LINK' => $this->getAbuseLink(),
		'BITRIX24_LINK' => $this->getBitrix24Link(),
	];
}