15

base64 エンコーディングと 8 ビット エンコーディングでメールを送信しています。imap_fetchstructure を使用してメッセージのエンコーディングを確認し (これを約 2 時間行ったため、失われました)、適切にデコードする方法を考えていました。

Gmail とメールボックス (iOS のアプリ) は 8 ビットとして送信し、Windows 8 のメール アプリは base64 として送信します。いずれにせよ、使用されているエンコーディングの種類を検出して、8 ビットか base64 かをデコードする必要があります。

PHP 5.1.6 を使用しています (はい、更新する必要があります。忙しかったです)。

表示するコードは本当にありません。これは私が持っているすべてです:

<?php
$hostname = '{********:993/imap/ssl}INBOX';
$username = '*********';
$password = '******';

$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to server: ' . imap_last_error());

$emails = imap_search($inbox,'ALL');

if($emails) {

    $output = '';

    rsort($emails);

    foreach($emails as $email_number) {

        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);
        $struct = imap_fetchstructure($inbox, $email_number);

        $output.= '<div class="toggle'.($overview[0]->seen ? 'read' : 'unread').'">';
        $output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
        $output.= '<span class="from">'.$overview[0]->from.'</span>';
        $output.= '<span class="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';

        /* output the email body */
        $output.= '<div class="body">'.$message.'</div>';
    }

    echo $output;
} 

imap_close($inbox);
?>
4

4 に答える 4

47

imap_bodystruct() または imap_fetchstructure() は、この情報を返します。次のコードは、探していることを正確に実行する必要があります。

<?php
$hostname = '{********:993/imap/ssl}INBOX';
$username = '*********';
$password = '******';

$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to server: ' . imap_last_error());

$emails = imap_search($inbox,'ALL');

if($emails) {
    $output = '';
    rsort($emails);

    foreach($emails as $email_number) {
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $structure = imap_fetchstructure($inbox, $email_number);

        if(isset($structure->parts) && is_array($structure->parts) && isset($structure->parts[1])) {
            $part = $structure->parts[1];
            $message = imap_fetchbody($inbox,$email_number,2);

            if($part->encoding == 3) {
                $message = imap_base64($message);
            } else if($part->encoding == 1) {
                $message = imap_8bit($message);
            } else {
                $message = imap_qprint($message);
            }
        }

        $output.= '<div class="toggle'.($overview[0]->seen ? 'read' : 'unread').'">';
        $output.= '<span class="from">From: '.utf8_decode(imap_utf8($overview[0]->from)).'</span>';
        $output.= '<span class="date">on '.utf8_decode(imap_utf8($overview[0]->date)).'</span>';
        $output.= '<br /><span class="subject">Subject('.$part->encoding.'): '.utf8_decode(imap_utf8($overview[0]->subject)).'</span> ';
        $output.= '</div>';

        $output.= '<div class="body">'.$message.'</div><hr />';
    }

    echo $output;
}

imap_close($inbox);
?>
于 2013-03-28T17:08:48.093 に答える
2

imap_fetchstructure() で返されるオブジェクト

  1. encoding (ボディ転送エンコーディング)

エンコーディングの転送 (使用するライブラリによって異なる場合があります)

0 7BIT 1 8BIT 2 バイナリ 3 BASE64 4 引用符付き印刷可能 5 その他

$s = imap_fetchstructure($mbox,$mid);
if ($s->encoding==3)
    $data = base64_decode($data);
于 2013-04-02T11:21:24.360 に答える