cakephp电子邮件插件由imap拉电子邮件

时间:2012-12-22 17:29:48

标签: email cakephp imap

我正在使用this cakephp电子邮件插件从帐户中提取电子邮件。这是我的参数

'datasource' => 'Emails.Imap',
'server' => 'mail.example.com',
'connect' => 'imap/novalidate-cert',
'username' => 'username',
'password' => 'password',
'port' => '143',
'ssl' => false,
'encoding' => 'UTF-8',
'error_handler' => 'php',

我按照文档中的说明进行查询

$ticketEmails = $this->TicketEmail->find('first', array('recursive' => -1));

但是当我调试结果时,以下字段显示这样的数据

Array
(
    [TicketEmail] => Array
        (


. . . other fields

            [body] => CjxIVE1MPjxCT0RZPnNvbWUgbWVzc2FnZTxicj48L0JPRFk+PC9IVE1MPgo=

            [plainmsg] => IHNvbWUgbWVzc2FnZQo=

 . . . other fields
        )

)

我无法理解为什么它会显示这些字符串,例如在电子邮件帐户的邮件正文中只有这个文本some message

我的蛋糕版本是1.3

谢谢!

1 个答案:

答案 0 :(得分:1)

这是Base64编码,看起来插件无法处理,只有checks for the quoted-printable format

您可以在模型中decode the data,例如在Model::afterFind()回调或自定义方法中,或者您可以尝试修改插件以便它返回已解码的数据(未经测试):

protected function _fetchPart ($Part) {
    $data = imap_fetchbody($this->Stream, $Part->uid, $Part->path, FT_UID | FT_PEEK);
    if ($data) {
        // remove the attachment check to decode them too
        if ($Part->format === 'base64' && $Part->is_attachment === false) {
            return base64_decode($data);
        }
        if ($Part->format === 'quoted-printable') {
            return quoted_printable_decode($data);
        }
    }
    return $data;
}