0

指定されたメールにアクセスしてメールを取得するスクリプトがあります。$temp->getContent()以下をエコーし​​ます。

----boundary_2710_edfb8b44-71c8-49ff-a8cb-88c83382c4ee 
Content-Type: multipart/alternative; 
boundary=--boundary_2709_dde0dd0e-ba35-4469-949d-5392aec65750 --boundary_2709_dde0dd0e-ba35-4469-949d-5392aec65750 
Content-Type: text/html; charset=utf-8 
Content-Transfer-Encoding: base64 
PGZvcm0gbWV0aG9k.........this part is base64 encoded and it works fine if i copy and decode it separately.......AgICAgICAgICAgDQoNCjwvZm9ybT4= 
----boundary_2709_dde0dd0e-ba35-4469-949d-5392aec65750-- ----boundary_2710_edfb8b44-71c8-49ff-a8cb-88c83382c4ee 
Content-Type: multipart/mixed; boundary=--boundary_2711_eca4cfc3-fc62-43d6-b9fb-e5295abbfbe8 ----boundary_2711_eca4cfc3-fc62-43d6-b9fb-e5295abbfbe8 Content-Type: application/pdf; 
name=redBusTicket.pdf 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment Content-ID: JVBERi0xLjIgCiXi48/TIAoxIDAgb2JqIAo8PCAKL1R5cGUgL0NhdGFsb2cgCi9QYWdlcyAy IDAgUiAKL1BhZ2VNb2RlIC9Vc2VOb25lIAovVmlld2VyUHJlZ

このコンテンツの間にbase64でエンコードされた部分があり、個別にコピーしてデコードすると正常に機能します。また、メールには添付ファイルがあります。添付ファイルを入手するにはどうすればよいですか。以下は私のコードです。base64_decodeを直接使用すると、出力が表示されません。空白のページだけが表示されます。

$storage = new Zend_Mail_Storage_Imap($imap);
$temp = $storage->getMessage($_GET['mailid']);
echo base64_decode($temp->getContent());

zendWebサイトのドキュメントはあまり良くありません。助けが要る!!

4

2 に答える 2

4

それは私にとってはうまくいきます:

foreach ($mail as $message) {

    $content = null;      
    foreach (new RecursiveIteratorIterator($message) as $part) {
        if (strtok($part->contentType, ';') == 'text/plain') {
            $content = $part;
            break;
        }
    }

    if ($content) {
        echo "\n encode: " . $content->contentTransferEncoding;        
        echo "\n date: " . $message->date;
        echo "\n subject: \n" . iconv_mime_decode($message->subject, 0, 'UTF-8');
        echo "\n plain text part: \n" . mb_convert_encoding(base64_decode($content), 'UTF-8', 'KOI8-R');
    }

}
于 2012-11-01T12:30:45.243 に答える
2

電子メールからbase_64コンテンツを取得するためにこのようなものがあります。不要なものを除外してみてください。

if ($email->isMultipart() && $partsCount){

    for($i = 1; $i < $email->countParts() +1; $i++) {
        $part = $email->getPart($i);
        $headers = $part->getHeaders();
        if (
            array_key_exists('content-description', $headers)
             || array_key_exists('content-disposition', $headers)

        ){
            if (array_key_exists('content-description', $headers)) {
                $att = $part->getContent();
                $filepath = utf8_encode(DATA_PATH . '/' . $part->getHeader('content-description'));
                if (is_file($filepath)) {
                    unlink($filepath); // deletes previous files with same name
                }
                $file = fopen($filepath, "w");
                fwrite($file, base64_decode($att));
                fclose($file);
                $attachments[] = $filepath;
            } 
        }

    }
}
于 2012-01-20T12:07:32.373 に答える