- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2017 04:10 PM
Hi Guys,
I have enabled email client by adding email_client=true to a form. However, I realized that some of the users are not able to view it the email client feature.
Any body know why?
Mussie
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2017 04:16 PM
Hi Munish,
Thanks for the reply. Some of the users are not able to view it on the form which is already enabled. However, I resolved this by adding a particular role to the 'EmailClientProcessor' ACL. Check the below link for details:
Mussie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2017 04:13 PM
Hi Mussie,
It will only be visible on the form you have enabled for not on all forms. You need to enable it for all forms.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2017 04:16 PM
Hi Munish,
Thanks for the reply. Some of the users are not able to view it on the form which is already enabled. However, I resolved this by adding a particular role to the 'EmailClientProcessor' ACL. Check the below link for details:
Mussie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 03:35 AM
Hi Mussie,
I don't appear to have this ACL (we were early adopters of SN and sometimes we have this kind of thing missing). Do you know how I might be able to restrict access to the Email Client via a Business Rule or similar? I don't want to remove Write access to the table as per that same page because the users need to be able to update their own tickets.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 03:41 AM
Don't worry, I found the solution in my own instance! It's an onLoad Client Script:
function onLoad() {
if(!g_user.hasRoles()){
$('email_client_open').hide();
}
}