• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/outcomingeventmanager.php
  • Класс: BitrixCalendarICalOutcomingEventManager
  • Вызов: OutcomingEventManager::getCancelMailEventFields
private function getCancelMailEventFields()
{
	return [
		"=Reply-To" => $this->getOrganizerName().' <'.$this->getReceiverAddress().'>',
		"=From" => $this->getOrganizerName().' <'.$this->getSenderAddress().'>',
		"=Message-Id" => $this->getMessageId(),
		"=In-Reply-To" => $this->getMessageReplyTo(),
		'EMAIL_FROM' => $this->getSenderAddress(),
		'EMAIL_TO' => $this->getReceiverAddress(),
		'MESSAGE_SUBJECT' => $this->getSubjectMessage(),
		'MESSAGE_PHP' => $this->getBodyMessage(),
		'DATE_FROM' => $this->eventFields['DATE_FROM'],
		'DATE_TO' => $this->eventFields['DATE_TO'],
		'NAME' => $this->eventFields['NAME'],
		'DESCRIPTION' => str_replace("rn", "#$&#$&#$&", $this->eventFields['DESCRIPTION']),
		'ATTENDEES' => $this->getAttendeesList(),
		'ORGANIZER' => $this->getOrganizerName(),
		'LOCATION' => $this->eventFields['LOCATION'],
		'FILES_LINK' =>$this->getFilesLink(),
		'METHOD' => $this->method,
	];
}