From bd6cce8a204858b3dbc0a0e10bdcacabcddac0c7 Mon Sep 17 00:00:00 2001 From: Uma <uma.s@vtiger.com> Date: Fri, 15 Nov 2019 16:04:22 +0530 Subject: [PATCH] Fixes #1209 File attachments in mail --- modules/Emails/models/Record.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/Emails/models/Record.php b/modules/Emails/models/Record.php index ea6dc76da..5dedb8b4d 100644 --- a/modules/Emails/models/Record.php +++ b/modules/Emails/models/Record.php @@ -180,9 +180,9 @@ class Emails_Record_Model extends Vtiger_Record_Model { //Adding attachments to mail if(is_array($attachments)) { foreach($attachments as $attachment) { - $fileNameWithPath = $rootDirectory.$attachment['path'].$attachment['fileid']."_".$attachment['attachment']; + $fileNameWithPath = $rootDirectory.$attachment['path'].$attachment['fileid']."_".$attachment['storedname']; if(is_file($fileNameWithPath)) { - $mailer->AddAttachment($fileNameWithPath, $attachment['attachment']); + $mailer->AddAttachment($fileNameWithPath, $attachment['storedname']); } } } @@ -277,9 +277,10 @@ class Emails_Record_Model extends Vtiger_Record_Model { for($i=0; $i<$numOfRows; $i++) { $attachmentsList[$i]['fileid'] = $db->query_result($attachmentRes, $i, 'attachmentsid'); $attachmentsList[$i]['attachment'] = decode_html($db->query_result($attachmentRes, $i, 'name')); + $attachmentsList[$i]['storedname'] = decode_html($db->query_result($attachmentRes, $i, 'storedname')); $path = $db->query_result($attachmentRes, $i, 'path'); $attachmentsList[$i]['path'] = $path; - $attachmentsList[$i]['size'] = filesize($path.$attachmentsList[$i]['fileid'].'_'.$attachmentsList[$i]['attachment']); + $attachmentsList[$i]['size'] = filesize($path.$attachmentsList[$i]['fileid'].'_'.$attachmentsList[$i]['storedname']); $attachmentsList[$i]['type'] = $db->query_result($attachmentRes, $i, 'type'); $attachmentsList[$i]['cid'] = $db->query_result($attachmentRes, $i, 'cid'); } -- GitLab