19 declare(strict_types=1);
52 $this->tpl = $DIC->ui()->mainTemplate();
53 $this->
ctrl = $DIC->ctrl();
54 $this->
lng = $DIC->language();
55 $this->
toolbar = $DIC->toolbar();
56 $this->
user = $DIC->user();
57 $this->
tabs = $DIC->tabs();
58 $this->
http = $DIC->http();
60 $this->error = $DIC[
'ilErr'];
62 $this->umail =
new ilMail($this->
user->getId());
70 if ($this->
http->wrapper()->post()->has(
'mobj_id')) {
71 $folderId = $this->
http->wrapper()->post()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
72 } elseif ($this->
http->wrapper()->query()->has(
'mobj_id')) {
73 $folderId = $this->
http->wrapper()->query()->retrieve(
'mobj_id', $this->
refinery->kindlyTo()->int());
75 $folderId = $this->
refinery->byTrying([
77 $this->
refinery->always($this->currentFolderId),
81 if (0 === $folderId || !$this->mbox->isOwnedFolder($folderId)) {
82 $folderId = $this->mbox->getInboxFolder();
85 $this->currentFolderId = $folderId;
90 if (preg_match(
'/^([a-zA-Z0-9]+?)_(\d+?)$/', $originalCommand, $matches) && 3 === count($matches)) {
91 $originalCommand = $matches[1];
94 return $originalCommand;
100 preg_match(
'/^([a-zA-Z0-9]+?)_(\d+?)$/', $command, $matches) &&
101 3 === count($matches) && is_numeric($matches[2])
103 return (
int) $matches[2];
112 $this->
ctrl->getCmd()
115 $nextClass = $this->
ctrl->getNextClass($this);
116 switch (strtolower($nextClass)) {
117 case strtolower(ilContactGUI::class):
121 case strtolower(ilPublicUserProfileGUI::class):
122 $this->tpl->setTitle($this->
lng->txt(
'mail'));
124 if ($this->
http->wrapper()->query()->has(
'user')) {
125 $userId = $this->
http->wrapper()->query()->retrieve(
'user', $this->
refinery->kindlyTo()->int());
129 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
130 $profileGui->setBackUrl($this->
ctrl->getLinkTarget($this,
'showMail'));
131 $this->
ctrl->clearParameters($this);
133 $ret = $this->
ctrl->forwardCommand($profileGui);
135 $this->tpl->setContent($ret);
137 $this->tpl->printToStdout();
141 if (!method_exists($this, $cmd)) {
151 $this->umail->deleteMailsOfFolder($this->currentFolderId);
153 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_deleted'),
true);
154 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
155 $this->
ctrl->redirect($this,
'showFolder');
160 if ($this->umail->countMailsOfFolder($this->currentFolderId)) {
161 $this->confirmTrashDeletion =
true;
173 if ($this->
http->wrapper()->query()->has(
'user')) {
174 $userId = $this->
http->wrapper()->query()->retrieve(
'user', $this->
refinery->kindlyTo()->int());
176 $this->tpl->setVariable(
'TBL_TITLE', implode(
' ', [
177 $this->
lng->txt(
'profile_of'),
181 $this->tpl->setVariable(
'TBL_TITLE_IMG_ALT', $this->
lng->txt(
'public_profile'));
186 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
187 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
190 $this->
ctrl->setParameter(
195 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
196 $profile_gui->setBackUrl($this->
ctrl->getLinkTarget($this,
'showMail'));
197 $this->
ctrl->clearParameters($this);
199 $this->tpl->setTitle($this->
lng->txt(
'mail'));
200 $this->tpl->setContent($this->
ctrl->getHTML($profile_gui));
201 $this->tpl->printToStdout();
206 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
208 $this->
lng->txt(
'mail_add_subfolder'),
209 $this->
ctrl->getLinkTarget($this,
'addSubFolder')
212 if ($isUserSubFolder) {
214 $this->
lng->txt(
'rename'),
215 $this->
ctrl->getLinkTarget($this,
'renameSubFolder')
218 $this->
lng->txt(
'delete'),
219 $this->
ctrl->getLinkTarget($this,
'deleteSubFolder')
222 $this->
ctrl->clearParameters($this);
225 protected function showFolder(
bool $oneConfirmationDialogueRendered =
false): void
227 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail.html',
'Services/Mail');
228 $this->tpl->setTitle($this->
lng->txt(
'mail'));
230 $isTrashFolder = $this->currentFolderId === $this->mbox->getTrashFolder();
232 if (!$this->errorDelete && $isTrashFolder &&
'deleteMails' === $this->
parseCommand($this->
ctrl->getCmd())) {
234 $confirmationGui->setHeaderText($this->
lng->txt(
'mail_sure_delete'));
236 $confirmationGui->addHiddenItem(
'mail_id[]', (
string) $mailId);
238 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
239 $confirmationGui->setFormAction($this->
ctrl->getFormAction($this,
'showFolder'));
240 $this->
ctrl->clearParameters($this);
241 $confirmationGui->setConfirm($this->
lng->txt(
'confirm'),
'confirmDeleteMails');
242 $confirmationGui->setCancel($this->
lng->txt(
'cancel'),
'showFolder');
243 $this->tpl->setVariable(
'CONFIRMATION', $confirmationGui->getHTML());
244 $oneConfirmationDialogueRendered =
true;
247 $folders = $this->mbox->getSubFolders();
249 $mtree->setTableNames(
'mail_tree',
'mail_obj_data');
251 $isUserSubFolder =
false;
252 $isUserRootFolder =
false;
254 $folder_d = $mtree->getNodeData($this->currentFolderId);
255 if ($folder_d[
'm_type'] ===
'user_folder') {
256 $isUserSubFolder =
true;
257 } elseif ($folder_d[
'm_type'] ===
'local') {
258 $isUserRootFolder =
true;
265 $mailtable->prepareHTML();
267 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()) !==
'-' . $e->getMessage() .
'-' ?
268 $this->
lng->txt($e->getMessage()) :
272 $table_html = $mailtable->getHTML();
274 if ($oneConfirmationDialogueRendered ===
false && $this->confirmTrashDeletion ===
false) {
275 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this,
'showFolder'));
277 if ($isUserRootFolder || $isUserSubFolder) {
282 if ($this->confirmTrashDeletion && $mailtable->isTrashFolder() && $mailtable->getNumberOfMails() > 0) {
284 $confirmationGui->setHeaderText($this->
lng->txt(
'mail_empty_trash_confirmation'));
285 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
286 $confirmationGui->setFormAction($this->
ctrl->getFormAction($this,
'performEmptyTrash'));
287 $this->
ctrl->clearParameters($this);
288 $confirmationGui->setConfirm($this->
lng->txt(
'confirm'),
'performEmptyTrash');
289 $confirmationGui->setCancel($this->
lng->txt(
'cancel'),
'showFolder');
290 $this->tpl->setVariable(
'CONFIRMATION', $confirmationGui->getHTML());
293 $this->tpl->setVariable(
'MAIL_TABLE', $table_html);
294 $this->tpl->printToStdout();
299 if ($a_show_confirm) {
301 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
302 $confirmationGui->setFormAction($this->
ctrl->getFormAction($this,
'showFolder'));
303 $this->
ctrl->clearParameters($this);
304 $confirmationGui->setHeaderText($this->
lng->txt(
'mail_sure_delete_folder'));
305 $confirmationGui->setCancel($this->
lng->txt(
'cancel'),
'showFolder');
306 $confirmationGui->setConfirm($this->
lng->txt(
'confirm'),
'performDeleteSubFolder');
307 $this->tpl->setVariable(
'CONFIRMATION', $confirmationGui->getHTML());
320 $parentFolderId = $this->mbox->getParentFolderId($this->currentFolderId);
321 if ($parentFolderId > 0 && $this->mbox->deleteFolder($this->currentFolderId)) {
322 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_folder_deleted'),
true);
323 $this->
ctrl->setParameterByClass(ilMailGUI::class,
'mobj_id', $parentFolderId);
324 $this->
ctrl->redirectByClass(ilMailGUI::class);
326 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_error_delete'));
334 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
335 $form->setFormAction($this->
ctrl->getFormAction($this,
'performAddSubFolder'));
336 $this->
ctrl->clearParameters($this);
337 if (
'edit' === $mode) {
338 $form->addCommandButton(
'performRenameSubFolder', $this->
lng->txt(
'save'));
339 $form->setTitle($this->
lng->txt(
'mail_rename_folder'));
341 $form->addCommandButton(
'performAddSubFolder', $this->
lng->txt(
'save'));
342 $form->setTitle($this->
lng->txt(
'mail_add_folder'));
344 $form->addCommandButton(
'showFolder', $this->
lng->txt(
'cancel'));
347 $title->setRequired(
true);
348 $form->addItem($title);
356 $isFormValid = $form->checkInput();
357 $form->setValuesByPost();
363 $newFolderId = $this->mbox->addFolder($this->currentFolderId, $form->getInput(
'subfolder_title'));
364 if ($newFolderId > 0) {
365 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_folder_created'),
true);
366 $this->
ctrl->setParameterByClass(ilMailGUI::class,
'mobj_id', $newFolderId);
367 $this->
ctrl->redirectByClass(ilMailGUI::class);
370 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_folder_exists'));
376 if (null === $form) {
380 $this->tpl->setTitle($this->
lng->txt(
'mail'));
381 $this->tpl->setContent($form->getHTML());
382 $this->tpl->printToStdout();
388 $isFormValid = $form->checkInput();
389 $form->setValuesByPost();
395 $folderData = $this->mbox->getFolderData($this->currentFolderId);
396 if ($folderData === null) {
397 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_operation_on_invalid_folder'),
true);
398 $this->
ctrl->setParameterByClass(ilMailGUI::class,
'mobj_id', $this->mbox->getInboxFolder());
399 $this->
ctrl->redirectByClass(ilMailGUI::class);
402 if ($folderData[
'title'] === $form->getInput(
'subfolder_title')) {
407 if ($this->mbox->renameFolder($this->currentFolderId, $form->getInput(
'subfolder_title'))) {
408 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_folder_name_changed'),
true);
409 $this->
ctrl->setParameterByClass(ilMailGUI::class,
'mobj_id', $this->currentFolderId);
410 $this->
ctrl->redirectByClass(ilMailGUI::class);
413 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_folder_exists'));
419 if (null === $form) {
421 $form->setValuesByArray(
422 [
'subfolder_title' => $this->mbox->getFolderData($this->currentFolderId)[
'title'] ??
'']
426 $this->tpl->setTitle($this->
lng->txt(
'mail'));
427 $this->tpl->setContent($form->getHTML());
428 $this->tpl->printToStdout();
437 if ($this->
http->wrapper()->post()->has(
'mail_id')) {
438 $mailIds = $this->
http->wrapper()->post()->retrieve(
444 if ($mailIds === [] && !$ignoreHttpGet) {
446 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
447 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
449 if (is_numeric($mailId)) {
450 $mailIds = [$mailId];
454 return array_filter(array_map(
'intval', $mailIds));
460 if ($mailIds !== []) {
461 $this->umail->markRead($mailIds);
462 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
464 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
473 if ($mailIds !== []) {
474 $this->umail->markUnread($mailIds);
475 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
477 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
486 if (1 !== count($mailIds)) {
488 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
493 if ($this->
http->wrapper()->post()->has(
'folder_id')) {
494 $newFolderId = $this->
http->wrapper()->post()->retrieve(
499 $redirectFolderId = $newFolderId;
501 foreach ($mailIds as $mailId) {
502 $mailData = $this->umail->getMail($mailId);
503 if (isset($mailData[
'folder_id']) &&
504 is_numeric($mailData[
'folder_id']) &&
505 (
int) $mailData[
'folder_id'] > 0
507 $redirectFolderId = (
int) $mailData[
'folder_id'];
512 if ($this->umail->moveMailsToFolder($mailIds, $newFolderId)) {
513 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_moved'),
true);
514 $this->
ctrl->setParameter($this,
'mobj_id', $redirectFolderId);
515 $this->
ctrl->redirect($this,
'showFolder');
517 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_move_error'));
525 if ($mailIds === []) {
527 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
532 if ($this->umail->moveMailsToFolder($mailIds, $folderId)) {
533 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_moved'),
true);
534 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
535 $this->
ctrl->redirect($this,
'showFolder');
537 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_move_error'));
544 $trashFolderId = $this->mbox->getTrashFolder();
547 if ($trashFolderId === $this->currentFolderId) {
548 if ($mailIds === []) {
549 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
550 $this->errorDelete =
true;
552 } elseif ($mailIds === []) {
553 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
554 } elseif ($this->umail->moveMailsToFolder($mailIds, $trashFolderId)) {
555 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_moved_to_trash'),
true);
556 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
557 $this->
ctrl->redirect($this,
'showFolder');
559 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_move_error'));
568 if ($mailIds === []) {
570 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
575 $this->umail->deleteMails($mailIds);
576 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_deleted'),
true);
577 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
578 $this->
ctrl->redirect($this,
'showFolder');
584 protected function showMail():
void 587 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
588 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
592 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
595 $mailData = $this->umail->getMail($mailId);
596 if ($mailData === null) {
597 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
600 $this->umail->markRead([$mailId]);
602 $this->tpl->setTitle($this->
lng->txt(
'mail_mails_of'));
604 $this->
tabs->clearTargets();
605 $this->
ctrl->setParameter($this,
'mobj_id', $mailData[
'folder_id']);
606 $this->
tabs->setBackTarget(
607 $this->
lng->txt(
'back_to_folder'),
608 $this->
ctrl->getFormAction($this,
'showFolder')
610 $this->
ctrl->clearParameters($this);
612 $this->
ctrl->setParameter($this,
'mail_id', $mailId);
613 $this->
ctrl->setParameter($this,
'mobj_id', $mailData[
'folder_id']);
614 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this,
'showMail'));
615 $this->
ctrl->clearParameters($this);
618 $form->setPreventDoubleSubmission(
false);
619 $form->setTableWidth(
'100%');
620 $this->
ctrl->setParameter($this,
'mobj_id', $mailData[
'folder_id']);
621 $this->
ctrl->setParameter($this,
'mail_id', $mailId);
622 $form->setFormAction($this->
ctrl->getFormAction($this,
'showMail'));
623 $this->
ctrl->clearParameters($this);
624 $form->setTitle($this->
lng->txt(
'mail_mails_of'));
629 if ($sender instanceof
ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
631 $replyBtn->setCaption(
'reply');
632 $this->
ctrl->setParameterByClass(
633 ilMailFormGUI::class,
635 $mailData[
'folder_id']
637 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mail_id', $mailId);
639 $replyBtn->setUrl($this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class));
640 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
641 $replyBtn->setPrimary(
true);
642 $this->
toolbar->addStickyItem($replyBtn);
646 $fwdBtn->setCaption(
'forward');
647 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mobj_id', $mailData[
'folder_id']);
648 $this->
ctrl->setParameterByClass(ilMailFormGUI::class,
'mail_id', $mailId);
650 $fwdBtn->setUrl($this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class));
651 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
653 $fwdBtn->setPrimary(
true);
654 $this->
toolbar->addStickyItem($fwdBtn);
656 $this->
toolbar->addButtonInstance($fwdBtn);
660 $printBtn->setCaption(
'print');
661 $this->
ctrl->setParameter($this,
'mail_id', $mailId);
662 $this->
ctrl->setParameter($this,
'mobj_id', $mailData[
'folder_id']);
663 $printBtn->setUrl($this->
ctrl->getLinkTarget($this,
'printMail'));
664 $this->
ctrl->clearParameters($this);
665 $printBtn->setTarget(
'_blank');
666 $this->
toolbar->addButtonInstance($printBtn);
669 $deleteBtn->setCaption(
'delete');
670 $deleteBtn->setCommand(
'deleteMails');
671 $this->
toolbar->addButtonInstance($deleteBtn);
673 if ($sender && $sender->getId() && !$sender->isAnonymous()) {
674 $linked_fullname = $sender->getPublicName();
676 $sender->getPersonalPicturePath(
'xsmall'),
677 $sender->getPublicName(),
686 $this->
ctrl->setParameter($this,
'mail_id', $mailId);
687 $this->
ctrl->setParameter($this,
'mobj_id', $mailData[
'folder_id']);
688 $this->
ctrl->setParameter($this,
'user', $sender->getId());
689 $linked_fullname =
'<br /><a href="' . $this->
ctrl->getLinkTarget(
692 ) .
'" title="' . $linked_fullname .
'">' . $linked_fullname .
'</a>';
693 $this->
ctrl->clearParameters($this);
697 $from->
setHtml($picture .
' ' . $linked_fullname);
698 } elseif (!$sender || !$sender->getId()) {
700 $from->
setHtml(trim(($mailData[
'import_name'] ??
'') .
' (' . $this->
lng->txt(
'user_deleted') .
')'));
706 ilMail::_getIliasMailerName(),
713 '<br />' . ilMail::_getIliasMailerName()
716 $form->addItem($from);
720 $this->umail->formatNamesForOutput($mailData[
'rcp_to'] ??
''),
725 if ($mailData[
'rcp_cc']) {
728 $this->umail->formatNamesForOutput($mailData[
'rcp_cc'] ??
''),
734 if ($mailData[
'rcp_bcc']) {
737 $this->umail->formatNamesForOutput($mailData[
'rcp_bcc'] ??
''),
740 $form->addItem($bcc);
745 $form->addItem($subject);
751 $form->addItem($date);
757 if ($mailData[
'attachments']) {
761 foreach ($mailData[
'attachments'] as $file) {
765 $att->
setHtml($radiog->render());
766 $form->addCommandButton(
'deliverFile', $this->
lng->txt(
'download'));
767 $form->addItem($att);
770 $isTrashFolder =
false;
771 if ($this->mbox->getTrashFolder() === $mailData[
'folder_id']) {
772 $isTrashFolder =
true;
775 $currentFolderData = $this->mbox->getFolderData((
int) $mailData[
'folder_id']);
776 if ($currentFolderData === null) {
777 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_operation_on_invalid_folder'),
true);
778 $this->
ctrl->setParameterByClass(ilMailGUI::class,
'mobj_id', $this->mbox->getInboxFolder());
779 $this->
ctrl->redirectByClass(ilMailGUI::class);
782 $actions = $this->mbox->getActions((
int) $mailData[
'folder_id']);
785 foreach ($actions as
$key => $action) {
786 if (
$key ===
'moveMails') {
787 $folders = $this->mbox->getSubFolders();
788 foreach ($folders as $folder) {
790 ($folder[
'type'] !==
'trash' || !$isTrashFolder) &&
791 $folder[
'obj_id'] !== $mailData[
'folder_id']
793 $optionText = $action .
' ' . $folder[
'title'];
794 if ($folder[
'type'] !==
'user_folder') {
795 $optionText = $action .
' ' . $this->
lng->txt(
796 'mail_' . $folder[
'title']
798 ($folder[
'type'] ===
'trash' ?
' (' . $this->
lng->txt(
'delete') .
')' :
'');
801 $selectOptions[$folder[
'obj_id']] = $optionText;
807 $folderLabel = $this->
lng->txt(
'mail_' . $currentFolderData[
'title']);
808 if ($currentFolderData[
'type'] ===
'user_folder') {
809 $folderLabel = $currentFolderData[
'title'];
812 $this->
toolbar->addSeparator();
813 $this->
toolbar->addText(sprintf($this->
lng->txt(
'current_folder'), $folderLabel));
815 if (is_array($selectOptions) && count($selectOptions) > 0) {
817 $actions->setOptions($selectOptions);
818 $this->
toolbar->addInputItem($actions);
821 $moveBtn->setCaption(
'execute');
822 $moveBtn->setCommand(
'moveSingleMail');
823 $this->
toolbar->addButtonInstance($moveBtn);
826 $prevMail = $this->umail->getPreviousMail($mailId);
827 $nextMail = $this->umail->getNextMail($mailId);
828 if (is_array($prevMail) || is_array($nextMail)) {
829 $this->
toolbar->addSeparator();
831 if ($prevMail && $prevMail[
'mail_id']) {
833 $prevBtn->setCaption(
'previous');
834 $this->
ctrl->setParameter($this,
'mail_id', $prevMail[
'mail_id']);
835 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
836 $prevBtn->setUrl($this->
ctrl->getLinkTarget($this,
'showMail'));
837 $this->
ctrl->clearParameters($this);
838 $this->
toolbar->addButtonInstance($prevBtn);
841 if ($nextMail && $nextMail[
'mail_id']) {
843 $nextBtn->setCaption(
'next');
844 $this->
ctrl->setParameter($this,
'mail_id', $nextMail[
'mail_id']);
845 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
846 $nextBtn->setUrl($this->
ctrl->getLinkTarget($this,
'showMail'));
847 $this->
ctrl->clearParameters($this);
848 $this->
toolbar->addButtonInstance($nextBtn);
852 $this->tpl->setContent($form->getHTML());
853 $this->tpl->printToStdout();
856 protected function printMail():
void 858 $tplprint =
new ilTemplate(
'tpl.mail_print.html',
true,
true,
'Services/Mail');
861 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
862 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
864 $mailData = $this->umail->getMail($mailId);
869 $tplprint->setVariable(
'TXT_FROM', $this->
lng->txt(
'from'));
870 if ($sender instanceof
ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
871 $tplprint->setVariable(
'FROM', $sender->getPublicName());
872 } elseif (null === $sender || 0 === $sender->getId()) {
873 $tplprint->setVariable(
875 trim(($mailData[
'import_name'] ??
'') .
' (' . $this->
lng->txt(
'user_deleted') .
')')
878 $tplprint->setVariable(
'FROM', ilMail::_getIliasMailerName());
881 $tplprint->setVariable(
'TXT_TO', $this->
lng->txt(
'mail_to'));
882 $tplprint->setVariable(
'TO', $mailData[
'rcp_to']);
884 if ($mailData[
'rcp_cc']) {
885 $tplprint->setCurrentBlock(
'cc');
886 $tplprint->setVariable(
'TXT_CC', $this->
lng->txt(
'mail_cc'));
887 $tplprint->setVariable(
'CC', $mailData[
'rcp_cc']);
888 $tplprint->parseCurrentBlock();
891 if ($mailData[
'rcp_bcc']) {
892 $tplprint->setCurrentBlock(
'bcc');
893 $tplprint->setVariable(
'TXT_BCC', $this->
lng->txt(
'mail_bcc'));
894 $tplprint->setVariable(
'BCC', $mailData[
'rcp_bcc']);
895 $tplprint->parseCurrentBlock();
898 $tplprint->setVariable(
'TXT_SUBJECT', $this->
lng->txt(
'subject'));
899 $tplprint->setVariable(
'SUBJECT', htmlspecialchars($mailData[
'm_subject']));
901 $tplprint->setVariable(
'TXT_DATE', $this->
lng->txt(
'date'));
902 $tplprint->setVariable(
907 $tplprint->setVariable(
'TXT_MESSAGE', $this->
lng->txt(
'message'));
908 $tplprint->setVariable(
'MAIL_MESSAGE', nl2br(htmlspecialchars($mailData[
'm_message'])));
916 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
917 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
921 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
925 if ($this->
http->wrapper()->post()->has(
'filename')) {
926 $filename = $this->
http->wrapper()->post()->retrieve(
'filename', $this->
refinery->kindlyTo()->string());
936 while (strpos(
$filename,
'..') !==
false) {
945 throw new ilException(
'mail_error_reading_attachment');
948 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_attachment'));
952 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()),
true);
953 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
954 $this->
ctrl->redirect($this);
962 if ($this->
http->wrapper()->query()->has(
'mail_id')) {
963 $mailId = $this->
http->wrapper()->query()->retrieve(
'mail_id', $this->
refinery->kindlyTo()->int());
966 $mailData = $this->umail->getMail((
int) $mailId);
967 if (null === $mailData || 0 === count((array) $mailData[
'attachments'])) {
968 throw new ilException(
'mail_error_reading_attachment');
972 if ($this->
http->wrapper()->query()->has(
'type')) {
973 $type = $this->
http->wrapper()->query()->retrieve(
'type', $this->
refinery->kindlyTo()->string());
977 if (count($mailData[
'attachments']) === 1) {
978 $attachment = current($mailData[
'attachments']);
981 if (
'draft' ===
$type) {
982 if (!$mailFileData->checkFilesExist([$attachment])) {
985 $pathToFile = $mailFileData->getAbsoluteAttachmentPoolPathByFilename($attachment);
986 $fileName = $attachment;
988 $file = $mailFileData->getAttachmentPathAndFilenameByMd5Hash(
992 $pathToFile = $file[
'path'];
993 $fileName = $file[
'filename'];
997 throw new ilException(
'mail_error_reading_attachment');
1000 $mailFileData->deliverAttachmentsAsZip(
1001 $mailData[
'm_subject'],
1003 $mailData[
'attachments'],
1008 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()),
true);
1009 $this->
ctrl->setParameter($this,
'mobj_id', $this->currentFolderId);
1010 $this->
ctrl->redirect($this);
1018 $this->currentFolderId,
1020 $this->currentFolderId === $this->mbox->getTrashFolder(),
1021 $this->currentFolderId === $this->mbox->getSentFolder(),
1022 $this->currentFolderId === $this->mbox->getDraftsFolder()
1032 $table->resetOffset();
1033 $table->writeFilterToSession();
1041 $table->resetOffset();
1042 $table->resetFilter();
deleteSubFolder(bool $a_show_confirm=true)
getAttachmentPathAndFilenameByMd5Hash(string $md5FileHash, int $mailId)
Interface GlobalHttpState.
static get(string $a_var)
getMailIdsFromRequest(bool $ignoreHttpGet=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This class handles all operations on files (attachments) in directory ilias_data/mail.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _lookupPref(int $a_usr_id, string $a_keyword)
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
ilGlobalTemplateInterface $tpl
bool $confirmTrashDeletion
addSubFolder(ilPropertyFormGUI $form=null)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static htmlencodePlainString(string $a_str, bool $a_make_links_clickable, bool $a_detect_goto_links=false)
Encodes a plain text string into HTML for display in a browser.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parseFolderIdFromCommand(string $command)
static http()
Fetches the global http state from ILIAS.
getSubFolderForm(string $mode='create')
Mail Box class Base class for creating and handling mail boxes.
addSubFolderCommands(bool $isUserSubFolder=false)
renameSubFolder(ilPropertyFormGUI $form=null)
showFolder(bool $oneConfirmationDialogueRendered=false)
parseCommand(string $originalCommand)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Error Handling & global info handling uses PEAR error class.
static set(string $a_var, $a_val)
Set a value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupLogin(int $a_user_id)