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