- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2023 08:47 PM - edited ‎03-05-2023 08:49 PM
Hi All,
We have one table with three reference [ Sub user, Req User and Cust User ]fields and the requirement is:
1. When "User communication" is added to the record we need to send email to "Sub User" field user. [We created email notification and it's working fine].
2. When "Sub User" field user reply directly to the email from outlook that he received, we need to send another email to Req User and Cust User fields users.
Can anyone please help us how to check the "Sub user" reply to user communications email.
Advance thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2023 11:19 PM
update as this
var deUser = current.req_user;
var portUser = current.portfolio.cust_user;
current.comments ="received from: " + email.origemail + "\n\n" + email.body_text;
gs.eventQueue('req_cust_user_email',current,demandUser + ',' + portUser);
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2023 11:19 PM
update as this
var deUser = current.req_user;
var portUser = current.portfolio.cust_user;
current.comments ="received from: " + email.origemail + "\n\n" + email.body_text;
gs.eventQueue('req_cust_user_email',current,demandUser + ',' + portUser);
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader