cakephp:为电子邮件插件定义数据源

时间:2013-07-17 09:44:50

标签: email plugins cakephp-2.0 datasource

我在cakephp电子邮件插件中的数据配置有问题,当我在本地服务器上测试我的代码时,没关系,但是在托管服务器中我有错误消息:

Datasource class Emails.ImapSource could not be found.

这是我的代码:

public $emailTicket = array(
        'datasource' => 'Emails.ImapSource',
        'server' => 'xxxxx.com',
        'connect' => '{xxxxx.com:110/pop3/TLS/novalidate-cert}INBOX',
        'username' => 'contact@xxxxx.com',
        'password' => 'xxxxx',
        'port' => '143',
        'ssl' => true,
        'encoding' => 'UTF-8',
        'error_handler' => 'php',
        'auto_mark_as' => array(
            'Seen',
            // 'Answered',
            // 'Flagged',
            // 'Deleted',
            // 'Draft',
        ),
    );

谢谢你的帮助!

0 个答案:

没有答案