How to sned ticket creation emails to users who self-assign, when none of their peers want it?
The functionality of the tool is what it is, but has anyone else solved this for users who want a "reciept" for their ticket that they can forward on or generate appointments from, without flooding their peers with unwanted email?
Best Answers
-
Justin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭Have a subscription based on a user attribute from AD that doesn't get used(Pager, HomePhone2, etc). New Incidents w/Assigned User where Pager = "sendAnyway"
5 -
Geoff_Ross Cireson Consultant O.G.Tom, that is possible.
Any editable property on the user settings page will be pushed back to the User object on save. Most people don't use this as you then have to build a mechanism to push back to AD (for example allowing a user to update their phone number) but for a SCSM only property, like RecieveAllNotifications or SMSorEmailNotifications this works well. Just add the property to a copy of UserProfile.js inside CustomSpace and make sure the property is not read only (Disabled: false)
You still need to then write your owjn notification setup to take advantage of this (or put in a feature request for Notify Analyst App)
Geoff10
Answers
Any editable property on the user settings page will be pushed back to the User object on save. Most people don't use this as you then have to build a mechanism to push back to AD (for example allowing a user to update their phone number) but for a SCSM only property, like RecieveAllNotifications or SMSorEmailNotifications this works well. Just add the property to a copy of UserProfile.js inside CustomSpace and make sure the property is not read only (Disabled: false)
You still need to then write your owjn notification setup to take advantage of this (or put in a feature request for Notify Analyst App)
Geoff