mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Set title for attachment file in Delivery Status Notification email
This commit is contained in:
parent
dfeee51283
commit
50f55a7144
@ -2401,6 +2401,18 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
|
||||
{
|
||||
$attachmentHTMLBlock='';
|
||||
$attachmentHTML = array();
|
||||
|
||||
// skip message/delivery-status and set a title for original eml file
|
||||
if (($attachments[0]['mimeType'] === 'message/delivery-status'))
|
||||
{
|
||||
unset($attachments[0]);
|
||||
if (is_array($attachments))
|
||||
{
|
||||
$attachments = array_values($attachments);
|
||||
$attachments[0]['name'] = lang('Original Email Content');
|
||||
}
|
||||
}
|
||||
|
||||
if (is_array($attachments) && count($attachments) > 0) {
|
||||
$url_img_vfs = Api\Html::image('filemanager','navbar', lang('Filemanager'), ' height="16"');
|
||||
$url_img_vfs_save_all = Api\Html::image('mail','save_all', lang('Save all'));
|
||||
|
Loading…
Reference in New Issue
Block a user