mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-29 07:26:05 +00:00
104 lines
3.2 KiB
PHP
104 lines
3.2 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
************************************************************************/
|
|
|
|
namespace Espo\Entities;
|
|
|
|
class Email extends \Espo\Core\ORM\Entity
|
|
{
|
|
protected function _getSubject()
|
|
{
|
|
return $this->get('name');
|
|
}
|
|
|
|
protected function _setSubject($value)
|
|
{
|
|
return $this->set('name', $value);
|
|
}
|
|
|
|
public function addAttachment(\Espo\Entities\Attachment $attachment)
|
|
{
|
|
if (!empty($this->id)) {
|
|
$attachment->set('parentId', $this->id);
|
|
$attachment->set('parentType', 'Email');
|
|
if ($this->entityManager->saveEntity($attachment)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function getBodyPlain()
|
|
{
|
|
$bodyPlain = $this->get('bodyPlain');
|
|
if (!empty($bodyPlain)) {
|
|
return $bodyPlain;
|
|
}
|
|
|
|
$body = $this->get('body');
|
|
|
|
$breaks = array("<br />","<br>","<br/>","<br />","<br />","<br/>","<br>");
|
|
$body = str_ireplace($breaks, "\r\n", $body);
|
|
$body = strip_tags($body);
|
|
return $body;
|
|
}
|
|
|
|
public function getBodyPlainForSending()
|
|
{
|
|
return $this->getBodyPlain();
|
|
}
|
|
|
|
public function getBodyForSending()
|
|
{
|
|
$body = $this->get('body');
|
|
if (!empty($body)) {
|
|
$attachmentList = $this->getInlineAttachments();
|
|
foreach ($attachmentList as $attachment) {
|
|
$body = str_replace("?entryPoint=attachment&id={$attachment->id}", "cid:{$attachment->id}", $body);
|
|
}
|
|
}
|
|
|
|
$body = str_replace("<table class=\"table table-bordered\">", "<table class=\"table table-bordered\" width=\"100%\">", $body);
|
|
|
|
return $body;
|
|
}
|
|
|
|
public function getInlineAttachments()
|
|
{
|
|
$attachmentList = array();
|
|
$body = $this->get('body');
|
|
if (!empty($body)) {
|
|
if (preg_match_all("/\?entryPoint=attachment&id=([^&=\"']+)/", $body, $matches)) {
|
|
if (!empty($matches[1]) && is_array($matches[1])) {
|
|
foreach($matches[1] as $id) {
|
|
$attachment = $this->entityManager->getEntity('Attachment', $id);
|
|
if ($attachment) {
|
|
$attachmentList[] = $attachment;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
return $attachmentList;
|
|
}
|
|
}
|
|
|