Файловый менеджер - Редактировать - /var/www/axolotl/data/www/axolotls.ru/www/bitrix/modules/esol.importexportexcel/lib/PhpImap/IncomingMail.php
Назад
<?php namespace PhpImap; /** * @see https://github.com/barbushin/php-imap * @author Barbushin Sergey http://linkedin.com/in/barbushin */ class IncomingMail { public $id; public $date; public $headersRaw; public $headers; public $subject; public $fromName; public $fromAddress; public $to = array(); public $toString; public $cc = array(); public $bcc = array(); public $replyTo = array(); public $messageId; public $textPlain; public $textHtml; /** @var IncomingMailAttachment[] */ protected $attachments = array(); public function addAttachment(IncomingMailAttachment $attachment) { $this->attachments[$attachment->id] = $attachment; } /** * @return IncomingMailAttachment[] */ public function getAttachments() { return $this->attachments; } /** * Get array of internal HTML links placeholders * @return array attachmentId => link placeholder */ public function getInternalLinksPlaceholders() { return preg_match_all('/=["\'](ci?d:([\w\.%*@-]+))["\']/i', $this->textHtml, $matches) ? array_combine($matches[2], $matches[1]) : array(); } public function replaceInternalLinks($baseUri) { $baseUri = rtrim($baseUri, '\\/') . '/'; $fetchedHtml = $this->textHtml; foreach($this->getInternalLinksPlaceholders() as $attachmentId => $placeholder) { if(isset($this->attachments[$attachmentId])) { $fetchedHtml = str_replace($placeholder, $baseUri . basename($this->attachments[$attachmentId]->filePath), $fetchedHtml); } } return $fetchedHtml; } } class IncomingMailAttachment { public $id; public $name; public $filePath; public $disposition; }
| ver. 1.4 |
Github
|
.
| PHP 7.4.8 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка