{
$frm_add = $from->mailbox . '@' . $from->host;
}
}
else
if (isset($from->mailbox) && isset($from->host))
{
$frm = $from->mailbox . '@' . $from->host;
}
else
if (isset($msgheader->fromaddress))
$frm = trim($h->fromaddress);
}
else
if (isset($msgheader->fromaddress))
$frm = trim($msgheader->fromaddress);
if (isset($msgheader->toaddress))
$to = trim($msgheader->toaddress);
else
$to = "未知";
if (isset($msgheader->subject))
$sub = trim($this->decode_mime_string($msgheader->subject));
if ($sub == "")
$sub = "无主题";
if (isset($msgheader->size))
$msg_size = ($msgheader->size > 1024) ? sprintf("%.0f kb", $msgheader->size / 1024) : $msgheader->size;
//if (strlen($frm) > 50)
// $frm = substr($frm, 0, 50) . '.
| 对此文章发表了评论 |
