Example #1
0
 /**
  * Function which will construct the compose email
  * This will handle the case of attaching the invoice pdf as attachment
  * @param Vtiger_Request $request 
  */
 public function composeMailData(Vtiger_Request $request)
 {
     parent::composeMailData($request);
     $viewer = $this->getViewer($request);
     $inventoryRecordId = $request->get('record');
     $mpdf = "";
     $Records = array($inventoryRecordId);
     $language = $request->get('language');
     $moduleName = $request->get('formodule');
     //$pdftemplateid = rtrim($request->get('pdftemplateid'),';');
     $pdftemplateid = rtrim($request->get('pdftemplateid'), ';');
     $Templateids = explode(";", $pdftemplateid);
     $PDFMaker = new PDFMaker_PDFMaker_Model();
     $name = $PDFMaker->GetPreparedMPDF($mpdf, $Records, $Templateids, $moduleName, $language);
     $name = $PDFMaker->generate_cool_uri($name);
     if ($name != "") {
         $fileName = $name . ".pdf";
     } else {
         $fileName = $moduleName . "_" . $inventoryRecordId . '.pdf';
     }
     $current_user = $cu_model = Users_Record_Model::getCurrentUserModel();
     if (!is_dir("storage/PDFMaker/")) {
         mkdir("storage/PDFMaker/");
     }
     if (!is_dir("storage/PDFMaker/" . $current_user->id)) {
         mkdir("storage/PDFMaker/" . $current_user->id);
     }
     $path = 'storage/PDFMaker/' . $current_user->id;
     $pdfFilePath = $path . '/' . $fileName;
     $mpdf->Output($pdfFilePath);
     $attachmentDetails = array(array('attachment' => $fileName, 'path' => $path, 'size' => filesize($pdfFilePath), 'type' => 'pdf', 'nondeletable' => true));
     $viewer->assign('ATTACHMENTS', $attachmentDetails);
     echo $viewer->view('ComposeEmailForm.tpl', 'Emails', true);
 }
Example #2
0
 /**
  * Function which will construct the compose email
  * This will handle the case of attaching the invoice pdf as attachment
  * @param Vtiger_Request $request 
  */
 public function composeMailData(Vtiger_Request $request)
 {
     parent::composeMailData($request);
     $viewer = $this->getViewer($request);
     $inventoryRecordId = $request->get('record');
     $recordModel = Vtiger_Record_Model::getInstanceById($inventoryRecordId, $request->getModule());
     $pdfFileName = $recordModel->getPDFFileName();
     $fileComponents = explode('/', $pdfFileName);
     $fileName = $fileComponents[count($fileComponents) - 1];
     //remove the fileName
     array_pop($fileComponents);
     $attachmentDetails = array(array('attachment' => $fileName, 'path' => implode('/', $fileComponents), 'size' => filesize($pdfFileName), 'type' => 'pdf', 'nondeletable' => true));
     $viewer->assign('ATTACHMENTS', $attachmentDetails);
     echo $viewer->view('ComposeEmailForm.tpl', 'Emails', true);
 }