• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/notification/mail.php
  • Класс: BitrixCalendarSharingNotificationMail
  • Вызов: Mail::notifyAboutMeetingStatus
public function notifyAboutMeetingStatus(string $to): bool
{
	if ($this->doSendMeetingCreated())
	{
		return $this->notifyAboutMeetingCreated($to);
	}

	if ($this->doSendMeetingCancelled())
	{
		return $this->notifyAboutMeetingCancelled($to);
	}

	return false;
}