19 declare(strict_types=1);
85 $this->tpl = $DIC->ui()->mainTemplate();
86 $this->
ctrl = $DIC->ctrl();
87 $this->
lng = $DIC->language();
88 $this->
toolbar = $DIC->toolbar();
89 $this->
user = $DIC->user();
90 $this->
tabs = $DIC->tabs();
91 $this->
http = $DIC->http();
93 $this->error = $DIC[
'ilErr'];
94 $this->ui_factory = $DIC->ui()->factory();
95 $this->ui_renderer = $DIC->ui()->renderer();
96 $this->ui_service = $DIC->uiService();
105 $this->umail =
new ilMail($this->
user->getId());
108 if ($this->
http->wrapper()->post()->has(self::PARAM_FOLDER_ID)) {
109 $folder_id = $this->
http->wrapper()->post()->retrieve(
110 self::PARAM_FOLDER_ID,
113 } elseif ($this->
http->wrapper()->query()->has(self::PARAM_FOLDER_ID)) {
114 $folder_id = $this->
http->wrapper()->query()->retrieve(
115 self::PARAM_FOLDER_ID,
119 $folder_id = $this->
refinery->byTrying([
125 if (0 === $folder_id || !$this->mbox->isOwnedFolder($folder_id)) {
126 $folder_id = $this->mbox->getInboxFolder();
129 $folder = $this->mbox->getFolderData($folder_id);
130 if ($folder ===
null) {
131 $this->tpl->setOnScreenMessage(
133 $this->
lng->txt(
'mail_operation_on_invalid_folder')
135 $this->tpl->printToStdout();
144 $nextClass = $this->
ctrl->getNextClass($this) ??
'';
145 switch (strtolower($nextClass)) {
146 case strtolower(ilContactGUI::class):
151 $cmd = $this->
ctrl->getCmd() ??
'';
153 case self::CMD_ADD_SUB_FOLDER:
154 case self::CMD_DELETE_MAILS:
155 case self::CMD_DELETE_SUB_FOLDER:
156 case self::CMD_DELIVER_FILE:
157 case self::CMD_EMPTY_TRASH:
158 case self::CMD_MOVE_SINGLE_MAIL:
159 case self::CMD_PRINT_MAIL:
160 case self::CMD_RENAME_SUB_FOLDER:
161 case self::CMD_SHOW_MAIL:
162 case self::CMD_SHOW_FOLDER:
163 case self::CMD_SHOW_USER:
164 case self::CMD_TABLE_ACTION:
176 $action = $this->
http->wrapper()->query()->retrieve(
177 self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_ACTION,
179 $this->refinery->kindlyTo()->string(),
185 $for_all_entries =
'ALL_OBJECTS' === implode(
187 $this->
http->wrapper()->query()->retrieve(
188 self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_MAIL_ID,
190 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->string()),
196 if ($for_all_entries) {
203 if (empty($mail_ids)) {
205 if ($action === MailFolderTableUI::ACTION_DELETE) {
206 $modal = $this->ui_factory->modal()->lightbox(
207 $this->ui_factory->modal()->lightboxTextPage(
208 $this->ui_renderer->render(
209 $this->ui_factory->messageBox()->failure($this->
lng->txt(
'mail_select_one'))
211 $this->
lng->txt(
'delete'),
214 $this->
http->saveResponse(
215 $this->
http->response()->withBody(
216 Streams::ofString($this->ui_renderer->renderAsync($modal))
219 $this->
http->sendResponse();
220 $this->
http->close();
222 $this->tpl->setOnScreenMessage(
224 $this->
lng->txt(
'mail_select_one'),
232 case MailFolderTableUI::ACTION_SHOW:
236 case MailFolderTableUI::ACTION_EDIT:
237 $this->
ctrl->setParameterByClass(
238 ilMailFormGUI::class,
239 self::PARAM_FOLDER_ID,
240 (
string) $this->folder->getFolderId()
242 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (
string) $mail_ids[0]);
244 $this->
ctrl->redirectByClass(ilMailFormGUI::class);
247 case MailFolderTableUI::ACTION_REPLY:
248 $this->
ctrl->setParameterByClass(
249 ilMailFormGUI::class,
250 self::PARAM_FOLDER_ID,
251 (
string) $this->folder->getFolderId()
253 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (
string) $mail_ids[0]);
255 $this->
ctrl->redirectByClass(ilMailFormGUI::class);
258 case MailFolderTableUI::ACTION_FORWARD:
259 $this->
ctrl->setParameterByClass(
260 ilMailFormGUI::class,
261 self::PARAM_FOLDER_ID,
262 (
string) $this->folder->getFolderId()
264 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (
string) $mail_ids[0]);
266 $this->
ctrl->redirectByClass(ilMailFormGUI::class);
269 case MailFolderTableUI::ACTION_DOWNLOAD_ATTACHMENT:
273 case MailFolderTableUI::ACTION_PRINT:
277 case MailFolderTableUI::ACTION_PROFILE:
278 $mail_data = $this->umail->getMail($mail_ids[0] ?? 0);
280 $user->hasPublicProfile()) {
281 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, (
string) $this->folder->getFolderId());
282 $this->
ctrl->setParameter($this, self::PARAM_USER_ID, (
string) $user->getId());
283 $this->
ctrl->redirect($this, self::CMD_SHOW_USER);
285 $this->tpl->setOnScreenMessage(
287 $this->
lng->txt(
'permission_denied'),
293 case MailFolderTableUI::ACTION_MARK_READ:
294 $this->umail->markRead($mail_ids);
295 $this->tpl->setOnScreenMessage(
297 $this->
lng->txt(
'saved_successfully'),
302 case MailFolderTableUI::ACTION_MARK_UNREAD:
303 $this->umail->markUnread($mail_ids);
304 $this->tpl->setOnScreenMessage(
306 $this->
lng->txt(
'saved_successfully'),
311 case MailFolderTableUI::ACTION_MOVE_TO:
312 $folder_id = $this->
http->wrapper()->query()->retrieve(
313 self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_TARGET_FOLDER,
316 if (empty($folder_id)) {
317 $this->tpl->setOnScreenMessage(
319 $this->
lng->txt(
'mail_move_error')
321 } elseif ($this->umail->moveMailsToFolder($mail_ids, $folder_id)) {
322 $this->tpl->setOnScreenMessage(
324 $this->
lng->txt(
'mail_moved'),
328 $this->tpl->setOnScreenMessage(
330 $this->
lng->txt(
'mail_move_error')
335 case MailFolderTableUI::ACTION_DELETE:
340 $this->tpl->setOnScreenMessage(
342 $this->
lng->txt(
'permission_denied')
352 $this->umail->deleteMailsOfFolder($this->mbox->getTrashFolder());
353 $this->tpl->setOnScreenMessage(
355 $this->
lng->txt(
'mail_deleted'),
366 $userId = $this->
http->wrapper()->query()->retrieve(
368 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
371 $this->tpl->setVariable(
'TBL_TITLE', implode(
' ', [
372 $this->
lng->txt(
'profile_of'),
376 $this->tpl->setVariable(
'TBL_TITLE_IMG_ALT', $this->
lng->txt(
'public_profile'));
380 $mailId = $this->
http->wrapper()->query()->retrieve(
382 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
386 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
387 $this->
tabs->clearTargets();
388 $this->
tabs->setBackTarget($this->
lng->txt(
'back'), $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL));
390 $this->
tabs->clearTargets();
391 $this->
tabs->setBackTarget(
392 $this->
lng->txt(
'back_to_folder'),
393 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_FOLDER)
397 $this->
ctrl->clearParameters($this);
399 $this->tpl->setTitle($this->
lng->txt(
'mail'));
400 $this->tpl->setContent($this->
ctrl->getHTML($profile_gui));
401 $this->tpl->printToStdout();
407 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
409 if ($this->folder->isUserLocalFolder()) {
411 $this->ui_factory->button()->standard(
412 $this->
lng->txt(
'mail_add_subfolder'),
413 $this->
ctrl->getLinkTarget($this, self::CMD_ADD_SUB_FOLDER)
418 if ($this->folder->isUserFolder()) {
420 $this->ui_factory->button()->standard(
421 $this->
lng->txt(
'rename'),
422 $this->
ctrl->getLinkTarget($this, self::CMD_RENAME_SUB_FOLDER)
426 $components[] = $modal = $this->ui_factory->modal()->interruptive(
427 $this->
lng->txt(
'delete'),
428 $this->
lng->txt(
'mail_sure_delete_folder'),
429 $this->
ctrl->getLinkTarget($this, self::CMD_DELETE_SUB_FOLDER)
432 $this->ui_factory->button()->standard(
433 $this->
lng->txt(
'delete'),
436 ->withOnClick($modal->getShowSignal())
440 if ($this->folder->isTrash()) {
441 $components[] = $modal = $this->ui_factory->modal()->interruptive(
442 $this->
lng->txt(
'mail_empty_trash'),
443 $this->
lng->txt(
'mail_empty_trash_confirmation'),
444 $this->
ctrl->getLinkTarget($this, self::CMD_EMPTY_TRASH)
447 $this->ui_factory->button()->standard(
448 $this->
lng->txt(
'mail_empty_trash'),
450 )->withOnClick($modal->getShowSignal())
460 $this->data_factory->uri(
462 $this->ctrl->getLinkTarget($this, self::CMD_TABLE_ACTION)
465 )->acquireParameters(
466 [self::URL_BUILDER_PREFIX],
469 self::PARAM_TARGET_FOLDER
477 $this->mbox->getSubFolders(),
484 $this->
http->request(),
487 $this->
user->getDateFormat(),
488 $this->
user->getTimeFormat(),
495 $this->tpl->setTitle($this->folder->getTitle());
496 $this->tpl->setContent($this->ui_renderer->render(
$components));
497 $this->tpl->printToStdout();
502 $this->
ctrl->clearParameters($this);
503 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
504 $this->
ctrl->redirect($this, self::CMD_SHOW_FOLDER);
509 $parent_folder_id = $this->mbox->getParentFolderId($this->folder->getFolderId());
510 if ($parent_folder_id > 0 && $this->mbox->deleteFolder($this->folder->getFolderId())) {
511 $this->tpl->setOnScreenMessage(
513 $this->
lng->txt(
'mail_folder_deleted'),
516 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $parent_folder_id);
517 $this->
ctrl->redirect($this, self::CMD_SHOW_FOLDER);
519 $this->tpl->setOnScreenMessage(
521 $this->
lng->txt(
'mail_error_delete'),
530 $form = $this->ui_factory->input()->container()->form()->standard(
531 $this->
ctrl->getFormAction($this, self::CMD_ADD_SUB_FOLDER),
533 'folder' => $this->ui_factory->input()->field()->section([
534 'title' => $this->ui_factory->input()->field()->text($this->
lng->txt(
'title'))->withRequired(
true)
535 ], $this->
lng->txt(
'mail_add_folder'))
539 $request = $this->
http->request();
540 if ($request->getMethod() ===
'POST') {
541 $form = $form->withRequest($request);
542 $data = $form->getData();
543 if (!empty(
$data[
'folder'][
'title'])) {
544 $new_folder_id = $this->mbox->addFolder(
545 $this->folder->getFolderId(),
546 (string)
$data[
'folder'][
'title']
548 if ($new_folder_id > 0) {
549 $this->tpl->setOnScreenMessage(
551 $this->
lng->txt(
'mail_folder_created'),
554 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $new_folder_id);
555 $this->
ctrl->redirect($this, self::CMD_SHOW_FOLDER);
557 $this->tpl->setOnScreenMessage(
559 $this->
lng->txt(
'mail_folder_exists')
564 $this->tpl->setContent($this->ui_renderer->render($form));
565 $this->tpl->printToStdout();
570 $form = $this->ui_factory->input()->container()->form()->standard(
571 $this->
ctrl->getFormAction($this, self::CMD_RENAME_SUB_FOLDER),
573 'folder' => $this->ui_factory->input()->field()->section([
574 'title' => $this->ui_factory->input()->field()->text($this->
lng->txt(
'title'))->withRequired(
true)
575 ], $this->
lng->txt(
'mail_rename_folder'))
579 $request = $this->
http->request();
580 if ($request->getMethod() ===
'POST') {
581 $form = $form->withRequest($request);
582 $data = $form->getData();
583 if (!empty(
$data[
'folder'][
'title'])) {
584 if ($this->mbox->renameFolder($this->folder->getFolderId(), (string)
$data[
'folder'][
'title'])) {
585 $this->tpl->setOnScreenMessage(
587 $this->
lng->txt(
'mail_folder_name_changed'),
592 $this->tpl->setOnScreenMessage(
594 $this->
lng->txt(
'mail_folder_exists')
599 $this->tpl->setContent($this->ui_renderer->render($form));
600 $this->tpl->printToStdout();
606 $this->
ctrl->getFormAction($this, self::CMD_SHOW_FOLDER),
610 $this->ui_service->filter(),
637 self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_MAIL_ID,
639 self::PARAM_INTERRUPTIVE_ITEMS
644 $this->
http->wrapper()->post(),
645 $this->
http->wrapper()->query()
648 if ($wrapper->has($param)) {
649 return $wrapper->retrieve(
652 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
670 if (count($mailIds) !== 1) {
672 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one'));
676 $newFolderId = $this->
http->wrapper()->query()->retrieve(
678 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
680 $redirectFolderId = $newFolderId;
682 foreach ($mailIds as $mailId) {
683 $mailData = $this->umail->getMail($mailId);
684 if (isset($mailData[
'folder_id']) &&
685 is_numeric($mailData[
'folder_id']) &&
686 (
int) $mailData[
'folder_id'] > 0) {
687 $redirectFolderId = (
int) $mailData[
'folder_id'];
692 if ($this->umail->moveMailsToFolder($mailIds, $newFolderId)) {
693 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_moved'),
true);
694 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $redirectFolderId);
695 $this->
ctrl->redirect($this, self::CMD_SHOW_FOLDER);
697 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_move_error'));
704 if (!$this->folder->isTrash()) {
705 $this->tpl->setOnScreenMessage(
707 $this->
lng->txt(
'mail_operation_on_invalid_folder'),
714 $this->tpl->setOnScreenMessage(
716 $this->
lng->txt(
'mail_deleted'),
731 foreach ($records as $record) {
733 if (!empty($record->getSendTime())) {
734 $time = $record->getSendTime()->setTimezone($user_timezone);
735 $prefix = $time->format($this->
user->getDateFormat()->toString()) .
' ';
737 $items[] = $this->ui_factory->modal()->interruptiveItem()->standard(
738 (
string) $record->getMailId(),
739 $prefix . $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform($record->getSubject())
743 $modal = $this->ui_factory->modal()->interruptive(
744 $this->
lng->txt(
'delete'),
745 $this->
lng->txt(
'mail_sure_delete_' . (count($items) === 1 ?
's' :
'p')),
746 $this->
ctrl->getFormAction($this, self::CMD_DELETE_MAILS)
747 )->withAffectedItems($items);
749 $this->
http->saveResponse(
750 $this->
http->response()->withBody(
751 Streams::ofString($this->ui_renderer->renderAsync($modal))
754 $this->
http->sendResponse();
755 $this->
http->close();
758 protected function showMail():
void 764 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
767 $mailData = $this->umail->getMail($mailId);
768 if ($mailData ===
null) {
769 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
772 $this->umail->markRead([$mailId]);
774 $this->tpl->setTitle($this->
lng->txt(
'mail_mails_of'));
776 $this->
tabs->clearTargets();
777 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
778 $this->
tabs->setBackTarget(
779 $this->
lng->txt(
'back_to_folder'),
780 $this->
ctrl->getFormAction($this, self::CMD_SHOW_FOLDER)
782 $this->
ctrl->clearParameters($this);
784 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
785 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
786 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this, self::CMD_SHOW_MAIL));
787 $this->
ctrl->clearParameters($this);
790 $form->setId(
'MailContent');
791 $form->setPreventDoubleSubmission(
false);
792 $form->setTableWidth(
'100%');
793 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
794 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
795 $form->setFormAction($this->
ctrl->getFormAction($this, self::CMD_SHOW_MAIL));
796 $this->
ctrl->clearParameters($this);
797 $form->setTitle($this->
lng->txt(
'mail_mails_of'));
802 if ($sender instanceof
ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
803 $this->
ctrl->setParameterByClass(
804 ilMailFormGUI::class,
805 self::PARAM_FOLDER_ID,
806 $mailData[
'folder_id']
808 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, $mailId);
810 $replyBtn = $this->ui_factory->button()->primary(
811 $this->
lng->txt(
'reply'),
812 $this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class)
814 $this->
toolbar->addStickyItem($replyBtn);
815 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
818 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
819 $this->
ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, $mailId);
821 if ($replyBtn ===
null) {
822 $fwdBtn = $this->ui_factory->button()->primary(
823 $this->
lng->txt(
'forward'),
824 $this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class)
826 $this->
toolbar->addStickyItem($fwdBtn);
828 $fwdBtn = $this->ui_factory->button()->standard(
829 $this->
lng->txt(
'forward'),
830 $this->
ctrl->getLinkTargetByClass(ilMailFormGUI::class)
832 $this->
toolbar->addComponent($fwdBtn);
834 $this->
ctrl->clearParametersByClass(ilMailFormGUI::class);
836 if ($sender && $sender->getId() && !$sender->isAnonymous()) {
837 $linked_fullname = $sender->getPublicName();
838 $avatar = $this->ui_factory->symbol()->avatar()->picture(
839 $sender->getPersonalPicturePath(
'xsmall'),
840 $sender->getPublicName()
844 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
845 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
846 $this->
ctrl->setParameter($this, self::PARAM_USER_ID, $sender->getId());
847 $linked_fullname =
'<br /><a class="mailusername" href="' . $this->
ctrl->getLinkTarget(
850 ) .
'" title="' . $linked_fullname .
'">' . $linked_fullname .
'</a>';
851 $this->
ctrl->clearParameters($this);
855 $from->setHtml($this->ui_renderer->render($avatar) .
' ' . $linked_fullname);
856 } elseif (!$sender || !$sender->getId()) {
858 $from->setHtml(trim(($mailData[
'import_name'] ??
'') .
' (' . $this->
lng->txt(
'user_deleted') .
')'));
862 $this->ui_renderer->render(
870 $form->addItem($from);
875 $this->umail->formatNamesForOutput($mailData[
'rcp_to'] ??
''),
881 if ($mailData[
'rcp_cc']) {
885 $this->umail->formatNamesForOutput($mailData[
'rcp_cc']),
892 if ($mailData[
'rcp_bcc']) {
896 $this->umail->formatNamesForOutput($mailData[
'rcp_bcc']),
900 $form->addItem($bcc);
905 $form->addItem($subject);
913 $form->addItem($date);
919 if ($mailData[
'attachments']) {
923 foreach ($mailData[
'attachments'] as $file) {
927 $att->
setHtml($radiog->render());
928 $form->addCommandButton(self::CMD_DELIVER_FILE, $this->
lng->txt(
'download'));
929 $form->addItem($att);
932 $current_folder = $this->mbox->getFolderData((
int) $mailData[
'folder_id']);
933 if ($current_folder ===
null) {
934 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mail_operation_on_invalid_folder'),
true);
935 $this->
ctrl->setParameterByClass(ilMailGUI::class, self::PARAM_FOLDER_ID, $this->mbox->getInboxFolder());
936 $this->
ctrl->redirectByClass(ilMailGUI::class);
939 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
942 $current_folder->getTitle(),
943 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_FOLDER)
945 $this->
ctrl->clearParameters($this);
946 $this->
tabs->activateTab(
'current_folder');
949 $folders = $this->mbox->getSubFolders();
950 foreach ($folders as $folder) {
951 if ((!$folder->isTrash() || !$current_folder->isTrash()) &&
952 $folder->getFolderId() !== $mailData[
'folder_id']) {
953 $move_links[] = $this->ui_factory->button()->shy(
955 $this->
lng->txt(
'mail_move_to_folder_x'),
957 ) . ($folder->isTrash() ?
' (' . $this->
lng->txt(
'delete') .
')' :
''),
959 )->withOnLoadCode(
static fn(
$id):
string =>
" 960 document.getElementById('$id').addEventListener('click', function(e) { 961 const frm = this.closest('form'), 962 action = new URL(frm.action), 963 action_params = new URLSearchParams(action.search); 965 action_params.delete('cmd'); 966 action_params.append('cmd', '" . self::CMD_MOVE_SINGLE_MAIL .
"'); 967 action_params.delete('folder_id'); 968 action_params.append('folder_id', '" . $folder->getFolderId() .
"'); 970 action.search = action_params.toString(); 972 frm.action = action.href; 983 if ($this->folder->isTrash()) {
984 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
985 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
986 $modal = $this->ui_factory->modal()->interruptive(
987 $this->
lng->txt(
'delete'),
988 $this->
lng->txt(
'mail_sure_delete_s'),
989 $this->
ctrl->getLinkTarget($this, self::CMD_DELETE_MAILS)
990 )->withAffectedItems([
991 $this->ui_factory->modal()->interruptiveItem()->standard(
995 ) .
' ' . $mailData[
'm_subject']
999 $this->ui_factory->button()->standard(
1000 $this->
lng->txt(
'delete'),
1002 )->withOnClick($modal->getShowSignal())
1004 $this->
ctrl->clearParameters($this);
1006 $ui_components[] = $modal;
1009 if ($move_links !== []) {
1011 $this->ui_factory->dropdown()->standard($move_links)
1012 ->withLabel($this->
lng->txt(
'mail_move_to_folder_btn_label'))
1016 $this->
toolbar->addSeparator();
1018 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
1019 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData[
'folder_id']);
1020 $print_url = $this->
ctrl->getLinkTarget($this, self::CMD_PRINT_MAIL);
1021 $this->
ctrl->clearParameters($this);
1022 $print_btn = $this->ui_factory->button()
1023 ->standard($this->
lng->txt(
'print'),
'#')
1025 document.getElementById('$id').addEventListener('click', function() { 1026 const frm = this.closest('form'), 1027 action = frm.action; 1029 frm.action = '$print_url'; 1030 frm.target = '_blank'; 1033 frm.action = action; 1034 frm.removeAttribute('target'); 1039 $this->
toolbar->addComponent($print_btn);
1041 $prevMail = $this->umail->getPreviousMail($mailId);
1042 $nextMail = $this->umail->getNextMail($mailId);
1043 if (is_array($prevMail) || is_array($nextMail)) {
1044 $this->
toolbar->addSeparator();
1046 if ($prevMail && $prevMail[self::PARAM_MAIL_ID]) {
1047 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $prevMail[self::PARAM_MAIL_ID]);
1048 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
1049 $prevBtn = $this->ui_factory->button()
1051 $this->
lng->txt(
'previous'),
1052 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL)
1054 $this->
toolbar->addComponent($prevBtn);
1055 $this->
ctrl->clearParameters($this);
1058 if ($nextMail && $nextMail[self::PARAM_MAIL_ID]) {
1059 $this->
ctrl->setParameter($this, self::PARAM_MAIL_ID, $nextMail[self::PARAM_MAIL_ID]);
1060 $this->
ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
1061 $nextBtn = $this->ui_factory->button()
1063 $this->
lng->txt(
'next'),
1064 $this->
ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL)
1066 $this->
toolbar->addComponent($nextBtn);
1067 $this->
ctrl->clearParameters($this);
1071 $this->tpl->setContent($form->getHTML() . $this->ui_renderer->render($ui_components));
1072 $this->tpl->printToStdout();
1077 $tplprint =
new ilTemplate(
'tpl.mail_print.html',
true,
true,
'components/ILIAS/Mail');
1080 $mailData = $this->umail->getMail($mailId);
1084 $tplprint->setVariable(
'TXT_FROM', $this->
lng->txt(
'from'));
1085 if ($sender instanceof
ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
1086 $tplprint->setVariable(
'FROM', $sender->getPublicName());
1087 } elseif (!$sender instanceof
ilObjUser || 0 === $sender->getId()) {
1088 $tplprint->setVariable(
1090 trim(($mailData[
'import_name'] ??
'') .
' (' . $this->
lng->txt(
'user_deleted') .
')')
1096 $tplprint->setVariable(
'TXT_TO', $this->
lng->txt(
'mail_to'));
1097 $tplprint->setVariable(
'TO', $mailData[
'rcp_to']);
1099 if ($mailData[
'rcp_cc']) {
1100 $tplprint->setCurrentBlock(
'cc');
1101 $tplprint->setVariable(
'TXT_CC', $this->
lng->txt(
'mail_cc'));
1102 $tplprint->setVariable(
'CC', $mailData[
'rcp_cc']);
1103 $tplprint->parseCurrentBlock();
1106 if ($mailData[
'rcp_bcc']) {
1107 $tplprint->setCurrentBlock(
'bcc');
1108 $tplprint->setVariable(
'TXT_BCC', $this->
lng->txt(
'mail_bcc'));
1109 $tplprint->setVariable(
'BCC', $mailData[
'rcp_bcc']);
1110 $tplprint->parseCurrentBlock();
1113 $tplprint->setVariable(
'TXT_SUBJECT', $this->
lng->txt(
'subject'));
1114 $tplprint->setVariable(
'SUBJECT', htmlspecialchars($mailData[
'm_subject']));
1116 $tplprint->setVariable(
'TXT_DATE', $this->
lng->txt(
'date'));
1117 $tplprint->setVariable(
1122 $tplprint->setVariable(
'TXT_MESSAGE', $this->
lng->txt(
'message'));
1123 $tplprint->setVariable(
'MAIL_MESSAGE', nl2br(htmlspecialchars($mailData[
'm_message'])));
1130 $mailId = $this->
http->wrapper()->query()->retrieve(
1131 self::PARAM_MAIL_ID,
1132 $this->
refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->
refinery->always(0)])
1135 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
1140 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
1150 while (str_contains((
string)
$filename,
'..')) {
1151 $filename = str_replace(
'..',
'', $filename);
1162 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_attachment'));
1166 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()),
true);
1175 $mailData = $this->umail->getMail($mailId);
1176 if (
null === $mailData || [] === (array) $mailData[
'attachments']) {
1180 $type = $this->
http->wrapper()->query()->retrieve(
1182 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
1186 if (count($mailData[
'attachments']) === 1) {
1187 $attachment = current($mailData[
'attachments']);
1190 if (
'draft' === $type) {
1191 if (!$mailFileData->checkFilesExist([$attachment])) {
1194 $pathToFile = $mailFileData->getAbsoluteAttachmentPoolPathByFilename($attachment);
1195 $fileName = $attachment;
1197 $file = $mailFileData->getAttachmentPathAndFilenameByMd5Hash(
1201 $pathToFile = $file[
'path'];
1202 $fileName = $file[
'filename'];
1209 $mailFileData->deliverAttachmentsAsZip(
1210 $mailData[
'm_subject'],
1212 $mailData[
'attachments'],
1217 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($e->getMessage()),
true);
getAttachmentPathAndFilenameByMd5Hash(string $md5FileHash, int $mailId)
static get(string $a_var)
This class represents an option in a radio group.
readonly GlobalHttpState $http
readonly ilCtrlInterface $ctrl
static getUserObjectById(int $usr_id)
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.
readonly ilUIService $ui_service
const CMD_DELETE_SUB_FOLDER
static _getIliasMailerName()
readonly ilGlobalTemplateInterface $tpl
static _lookupPref(int $a_usr_id, string $a_keyword)
const MESSAGE_TYPE_SUCCESS
const CMD_MOVE_SINGLE_MAIL
readonly Factory $ui_factory
Filter input for mail folders.
withOnLoadCode(Closure $binder)
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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
confirmDeleteMails(array $mail_ids)
Confirm the deletion of selected mails in async modal.
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
This is how the factory for UI elements looks.
initRequest()
Init class variables that can be determined in an actual request.
Mail Box class Base class for creating and handling mail boxes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
const CMD_RENAME_SUB_FOLDER
readonly Refinery $refinery
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
moveSingleMail()
Move a single mail to a folder Called from showMail page.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
readonly Renderer $ui_renderer
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
readonly ilToolbarGUI $toolbar
readonly ilErrorHandling $error
getFilteredSearch()
Searcher for mails in the folder, initialized with the current filter values needed for table display...
const MESSAGE_TYPE_FAILURE
const PARAM_INTERRUPTIVE_ITEMS
const PARAM_TARGET_FOLDER
readonly DataFactory $data_factory
static set(string $a_var, $a_val)
Set a value.
static _lookupLogin(int $a_user_id)