• Модуль: mail
  • Путь к файлу: ~/bitrix/modules/mail/lib/helper/mailbox.php
  • Класс: BitrixMailHelperMailbox
  • Вызов: Mailbox::resyncMessage
public function resyncMessage(array &$excerpt)
{
	$body = $this->downloadMessage($excerpt);
	if (!empty($body))
	{
		return $this->cacheMessage(
			$body,
			array(
				'replaces' => $excerpt['ID'],
			)
		);
	}

	return false;
}