0

私はgmail用の基本的な読み取り専用クライアントをまとめています。imap(PHP)を介してメールを正常に取得し、保存していますが、ブラウザに表示する際にいくつかの問題が発生しています。

ほとんどの電子メールは完全な html ページ<html><title>Your Mail</title><body>etc...</body></html>であり、電子メールが表示されているルート html ページが破損することがよくあります。

たとえば、多くの場合、

<html>
<title>Read only mail>
<body>
<h1>Your mail:</h1>
<html><title>An email from steve</title><style>html {background-color=red;}</style>
<body>It's a read email! (get it?)</body></html>
<html><title>An email from james</title><style>body {background-color=green;}</style>
<body>I like green things, save the planet!</body></html>
More mail etc...
</body>
</html>

これは完全に有効な html ではありませんが、主な問題は、メールの CSS がページ上の他のすべての要素に影響を与えることです。私の最善の考えは、何らかの方法で PHP で iframe を作成することです (これは、追加の要求なしで可能ですか)。ドキュメントのすべての CSS と HTML。

この問題を回避する方法を知っている人はいますか? gmail やその他の Web クライアントはどのようにそれを行いますか? Javascript/jQuery & Ajax などのクライアント側のソリューションを検討していただければ幸いです

御時間ありがとうございます、

--

現在、メールは次のように出力されます。

/* connect */
$inbox = imap_open($hostname,$username,$password) or die(imap_last_error());

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

  /* begin output var */
  $output = '';

  /* put the newest emails on top */
  rsort($emails);

  /* for every email... */
  foreach($emails as $email_number) {

    /* get information specific to this email */
    $overview = imap_fetch_overview($inbox,$email_number,0);
    $message = imap_fetchbody($inbox,$email_number,2);

    /* output the email header information */
    $output.= '<div class="toggler '.($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;
} 

/* close the connection */
imap_close($inbox)

http://davidwalsh.name/gmail-php-imapから取得 (私のコードは若干異なりますが、デザインと出力は同じです)

4

3 に答える 3

0

phpで本体自体のように、残しておきたい要素を選んで、残りを削除してみませんか?基本的な電子メールコンテンツレイアウトのセットに異なるルールを適用するには、確かにスイッチが必要です。ただし、レイアウトごとに特定の信頼できるルールを実装する自由が得られます。

于 2012-07-17T08:31:08.437 に答える
0

iframeを使用してメッセージを表示したり、正規表現サーバー側を使用してbodyタグ内のテキストを取得したり、domクライアント側を使用してbody要素を取得したりできます。

于 2012-07-17T08:31:40.180 に答える
0

ここで、domDocument を使用して、各メッセージの body タグの間の内容を抽出します。

<?php set_time_limit(0); ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>You have mail</title>
</head>

<body>

<?php
/* connect */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = '';
$password = '';
$inbox = imap_open($hostname,$username,$password) or die(imap_last_error());

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

    /* begin output var */
    $output = '';

    /* put the newest emails on top */
    rsort($emails);

    /* for every email... */
    foreach($emails as $email_number) {

        /* get information specific to this email */
        $overview = imap_fetch_overview($inbox, $email_number, 0);
        $message = imap_fetchbody($inbox, $email_number, 2);

        /* output the email header information */
        $output.= '<div class="toggler'.($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 only the email body */
        $dom = new DOMDocument();
        libxml_use_internal_errors(true);
        $dom->loadHTML($message);
        $body = $dom->getElementsByTagName("body")->item(0);
        if ($body !== null) {
            for ($n = $body->firstChild; $n !== null; $n = $n->nextSibling) {
                $body = simplexml_import_dom($n)->asXML();
            }
        }
        $output.= '<div id="body">'.$body.'</div>';
    }

    echo $output.'
</body>
</html>';
}

/* close the connection */
imap_close($inbox);
?>

電子メールのプレーンテキスト部分のみが必要な場合に他の質問に答えるには (これにはマルチパート境界も含まれる可能性があります)

使用$message = imap_fetchbody($inbox, $email_number, 1);注意1

それが役に立てば幸い

于 2012-07-17T09:17:01.050 に答える