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/Jobs/CheckInboundEmails.php
T
2014-02-06 10:36:57 +02:00

18 lines
261 B
PHP

<?php
namespace Espo\Jobs;
use \Espo\Core\Exceptions;
class CheckInboundEmails extends \Espo\Core\Jobs\Base
{
public function run()
{
//some code
//for problems use Exceptions. In this case job status will be "Failed", otherwise "Success"
}
}