
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:11 PM
Question: Has anyone done a solution to handle inbound email action to create INC record from third party email senders and create guest accounts for those third party senders?
Can it be done without any license ramification?
#ITSM #Platform
Solved! Go to Solution.
- Labels:
-
Architect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:38 PM
Hi,
System will show created by as Guest but in the email log there is field user where you can find the source email id from which incident got created.
Thanks and Regards,
Saurabh Gupta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:42 PM
If those external user doesnt need to login to ServiceNow, you can just use guest account instead of creating accounts for them. So any inbound email will bydefault tag to the guest account if account not found in ServiceNow.
We usually add them to the watchlist using the inbound action script, so that we know who created the incident and it also helps assignee to email while replying from the incident record.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 01:00 PM
Hi,
You have to check first while changing the additional notes who all the recipients. If work notes list/watch list is available there, you can use existing notification else create a new one.
Thanks and Regards,
Saurabh Gupta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:45 PM
The external user will not need to login to ServiceNOW. However, they need to interact with the user via email to receive worknote information between the ServiceNOW and the external party.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:49 PM
Cool. You can add below to the inbound script, if you want them to be added to watchlist.
current.watch_list = email.origemail;
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 01:01 PM
@SanjivMeher. Thank you. will try this. What is the alternative code I can use if I only want the third party caller be notified for additional comments only?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 01:05 PM
watch_list is the field you should use. Because watch list are notified for additional comments and work_notes_list are notified about worknotes changes.
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:49 PM
will adding the sender email enable the sender to be notified if I add any worknote in the INC record?