if (handleAsSent($mailbox)) {
$msg['FROM'] = $msg['TO'];
}
+ $msg['FROM'] = parseAddress($msg['FROM']);
+
/*
* This is done in case you're looking into Sent folders,
* because you can have multiple receivers.
$msg['SUBJECT'] = decodeHeader($msg['SUBJECT']);
$subject = processSubject($msg['SUBJECT'], $indent_array[$msg['ID']]);
-
+
echo html_tag( 'tr','','','','VALIGN="top"') . "\n";
if (isset($msg['FLAG_FLAGGED']) && ($msg['FLAG_FLAGGED'] == true)) {
* Who wrote this?!
*/
if (is_array($message_highlight_list) && count($message_highlight_list)) {
+ $msg['TO'] = parseAddress($msg['TO']);
+ $msg['CC'] = parseAddress($msg['CC']);
foreach ($message_highlight_list as $message_highlight_list_part) {
if (trim($message_highlight_list_part['value']) != '') {
$high_val = strtolower($message_highlight_list_part['value']);