当我尝试通过zend mail获取yahoo.com发送的内容和电子邮件时。 发送邮件:
hello.
yeah1
yeah2
YAHOO!
来自zend mail:
hello.=20
yeah1yeah2YAHOO!=20
使用此代码
foreach (new RecursiveIteratorIterator($message) as $numPart => $part) {
$content = Zend_Mime_Decode::decodeQuotedPrintable($part->getContent());
echo "<textarea style='height: 400px;'>".($content)."</textarea>";
}
我不明白为什么它会失去换线。 与gmail / outlook一起正常工作