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

		return $attachments;
	}

	return false;
}