0

我正在使用这个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

谢谢 !

4

1 回答 1

1

那是Base64编码,看起来插件没有处理它,它只检查quoted-printable格式

您可以解码模型中的数据,例如在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;
}
于 2012-12-23T14:09:26.567 回答