Base solution for your next web application
Open Closed

Concept of Inbox/MessagesHi #3119


User avatar
0
bilalhaidar created

Hi, I am introducing a basic Workflow engine to drive the process of several forms in my application. Typically a user would receive an email or message in his/her inbox to open a form, complete the form, and submit.

Can I consider the Notifications as an engine to rely on to send messages to users telling them that a new Task is assigned to him/her and they can click a link in the message displayed in the notification popup to open a form or so?

Or better off create an Inbox etc.

Thanks


4 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi Bilal,

    In your case I think notifications are well fit. You can both send an email and notification. You can think email as an outside notifier and notifiation as inside notifier for users.

    Also it is possible click notification and redirect user to a page, you can check current AspNet Zero code for that because we have implemented it already.

    Thanks.

  • User Avatar
    0
    bilalhaidar created

    Oh that's great!

    Can you point me to where is this implemented (Url)

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    Yes, the url for notification is retrieved here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/blob/master/src/MyCompanyName.AbpZeroTemplate.Web/App/common/services/appUserNotificationHelper.js#L34">https://github.com/aspnetzero/aspnet-ze ... per.js#L34</a>.

  • User Avatar
    0
    bilalhaidar created

    Thanks I'll check the logic used in this case.