no luck so far,
but I wonder why only emails sent from "outlook and hotmail" only dont show as in the format displayed while composing. I doubt there is something I have too see for charset.
For now, I have worked in class.mailfetch.php,
I did modifications on line 201.
function getBody($mid) {
$body ='';
if(!($body = $this->getpart($mid,'TEXT/PLAIN',$this->charset))) {
if(($body = $this->getPart($mid,'TEXT/HTML',$this->charset))) {
//Convert tags of interest before we striptags
//i commented below two lines as to avoid tag modification
// $body=str_replace("</DIV><DIV>", "\n", $body);
// $body=str_replace(array("<br>", "<br />", "<BR>", "<BR />"), "\n", $body);
// $body=Format:($body); //Strip tags??
$body=$body; // imran edited to avoid Strip tags
}
}
return $body;
}