我使用以下脚本阅读电子邮件。
<?php
//Fetch users from table
$sql_users=mysql_query("select userName, realpass,userID from users ");
while($row = mysql_fetch_assoc($sql_users)){
$username=$row['userName'].'@example.com'; // Email address is username@domain.com
$password=$row['realpass'];
$hostname = '{example.com:995/pop3/ssl/novalidate-cert}';
$username = $username; $password = $password;
$imap = imap_open($hostname,$username,$password) or die('Cannot connect: ' . imap_last_error());
for ($i = 1; $i <= $message_count; ++$i){
$header = imap_header($imap, $i);
// fetch message body and mark it as read
$body = imap_fetchbody($imap, $i,2,FT_PEEK);
$prettydate = date("jS F Y", $header->udate);
if (isset($header->from[0]->personal)) {
$personal = $header->from[0]->personal;
} else {
$personal = $header->from[0]->mailbox;
}
$subject=$header->Subject;
//display email content
$email = "$personal <{$header->from[0]->mailbox}@{$header->from[0]->host}>";
echo "On $prettydate, $email said \"$body\".\n";
echo '<br><br>';
}
print_r(imap_errors());
imap_close($imap);
}
问题是电子邮件消息从需要删除的额外字符返回。此外,我需要将电子邮件标记为已读。 以下是一条示例消息:
” 2013年3月20日,乔说“电子邮件祷告内容。
这= A0是example.com的测试电子邮件。它应该被转换成 一个n = ew祈祷请求。
谢谢,乔“。”
答案 0 :(得分:1)
在PHP参考中,有comment与您的问题类似。在那篇评论中,他以这种方式阅读内容:
$text = trim( utf8_encode( quoted_printable_decode(
imap_fetchbody( $this->inbox, $emailNo, $section ) ) ) );
尝试将该示例调整为您的代码并尝试一下。