This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Entities/Email.php
T
Yuri Kuznetsov 930a6b26af inbound emails
2014-01-29 18:28:52 +02:00

19 lines
233 B
PHP

<?php
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);
}
}