如何在PHP中使用IMAP来获取邮件正文内容?

时间:2011-03-03 07:18:03

标签: php imap

我无法获取电子邮件正文内容。

这是我的代码

<?php
/* connect to server */
$hostname = '{myserver/pop3/novalidate-cert}INBOX';
$username = 'username';
$password = 'password';

/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error());
//echo $inbox;
/* grab emails */
$emails = imap_search($inbox,'ALL');


/* if emails are returned, cycle through each... */
if($emails) {

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

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

  /* for every email... */
  foreach($emails as $email_number) {
    //$email_number=$emails[0];
//print_r($emails);
    /* 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);
?>

当我用来从Gmail获取电子邮件时,会显示电子邮件正文内容,但是一旦我使用我的邮件服务器,我就无法获取电子邮件的正文内容。

你能帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:42)

我找到了解决方案, 错误在于此行

$message = imap_fetchbody($inbox,$email_number,2);

现在,我正在使用

$message = imap_fetchbody($inbox,$email_number, 1.2);

以text / html格式接收正文内容

下面我给出了可用选项的数据。这可能是一个

()Root Message Part (multipart/related)
(1) The text parts of the message (multipart/alternative)
(1.1) Plain text version (text/plain)
(1.2) HTML version (text/html)
(2) The background stationary (image/gif)

答案 1 :(得分:0)

Zeta Mail组件允许更多convenient fetching of mails from IMAPPOP,并且可以将传入的电子邮件解析为一个漂亮而干净的对象结构,以便您轻松处理它。