- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2017 05:19 AM
I am looking to set up an email notification to be sent to the KB author when a user adds a comment to a published KB article. How can I accomplish this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2017 05:45 AM
1. Go to notifications and add table as "Knowledge Feedback"
2. Make filter conditions as "Comments is not empty"
3. In Who will receive tab, under "Users/Groups in fields" field add Article author:
4. In "What will contain" section Add Subject as: "Comments added for Article : ${article.number}"
5. Add Body as:
Hi ${article.author},
Comments have been added for article: ${article.number}.
${comments}
Regards,
Admin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2017 09:55 PM
Hi
Are you able to advise how to put a link to the Article in this Notification, i have everything else working but can't get a link to take the Author to the Article.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2017 05:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2017 05:36 AM
Hi Chris,
It is a new plugin for Jakata, goto Knowledge management advance and enable this, you can then subscribe to the KB or mark it as a favourite.
thanks
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2017 10:28 PM
You might need to add a Href in the notification by constructing the URL.
add a script to construct the url for the KB article as this:
var url = "kb_view.do?sys_kb_id="+current.sys_id;
url = String(url);
template.print("<a href ="+ url+">Open the article here</a>");