mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
allow bcc in header print (may be set on outgoing mails)
This commit is contained in:
parent
d11c7f5e25
commit
416b482a5a
@ -1662,6 +1662,7 @@ class infolog_ui
|
||||
if ($header['SENDER']) $headdata .= lang('sender').': '.$header['SENDER']."\n";
|
||||
if ($header['TO']) $headdata .= lang('to').': '.$header['TO']."\n";
|
||||
if ($header['CC']) $headdata .= lang('cc').': '.$header['CC']."\n";
|
||||
if ($header['BCC']) $headdata .= lang('bcc').': '.$header['BCC']."\n";
|
||||
if ($header['DATE']) $headdata .= lang('date').': '.$header['DATE']."\n";
|
||||
if ($header['PRIORITY'] && $header['PRIORITY'] != 'normal') $headdata .= lang('priority').': '.$header['PRIORITY']."\n";
|
||||
if ($header['IMPORTANCE'] && $header['IMPORTANCE'] !='normal') $headdata .= lang('importance').': '.$header['IMPORTANCE']."\n";
|
||||
|
Loading…
Reference in New Issue
Block a user