활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
To send inbox notification programmatically for a user we can do as below.
ResourceResolver resourceResolver = resolverFactory.getResourceResolver(null);
InboxNotification inboxNotification = inboxNotificationSender.buildInboxNotification();
inboxNotification.setAssignee("admin");
inboxNotification.setTitle("Page Published");
inboxNotification.setMessage("The page has been Published");
inboxNotificationSender.sendInboxNotification(resourceResolver, inboxNotification);
Is there any way we can send inbox notification to a group programmatically? I tried sendInboxNotifications but it is not happening.
해결되었습니다! 솔루션으로 이동.
Hi
sendInboxNotifications uses Task API to send inbox notification and Task Class contains method to send notification only owner
void setCurrentAssignee(String ownerId)
Task ("The Adobe AEM Quickstart and Web Application.")
Adobe Experience Manager Help | Developing for Task Management in AEM
You can develop your own Class and implements sendInboxNotifications to override in order to pass group and get All user within group and loop through to send notification to all.
Thanks
Arun
Hi
sendInboxNotifications uses Task API to send inbox notification and Task Class contains method to send notification only owner
void setCurrentAssignee(String ownerId)
Task ("The Adobe AEM Quickstart and Web Application.")
Adobe Experience Manager Help | Developing for Task Management in AEM
You can develop your own Class and implements sendInboxNotifications to override in order to pass group and get All user within group and loop through to send notification to all.
Thanks
Arun