3
私は電子メールを読むための簡単なPHPスクリプトを書いています。php imap reading bodyメッセージ
私がメール本文を抽出する場合:どのように私は抽出することができます
--0016e6db2b334d4d7904a883f4ec
Content-Type: text/plain; charset=ISO-8859-1
<The message arrived>
--0016e6db2b334d4d7904a883f4ec
Content-Type: text/html; charset=ISO-8859-1
<The message arrived>
--0016e6db2b334d4d7904a883f4ec--
:
imap_body($mbox, $i);
私はこのような何かを返しましたか? 私はphp_imapを使用しています。
ありがとうございました。
問題は、文字列全体が($、$のMBOX i)をimap_bodyで印刷されることです。 – michele
fetch_body()を試しましたか? 'imap_fetchbody(resource $ imap_stream、int $ msg_number、string $ section [、int $ options = 0])' セクションは、本体を取得するために送ることができる引数です。 – serialworm
これは役に立ちます。 http://stackoverflow.com/questions/5177772/how-to-use-imap-in-php-to-fetch-mail-body-content – serialworm