- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2023 07:28 AM
We have requirement POP3 is not supporting by Microsoft365 so for that we cannot create email account on ServiceNow that's why we came up with new solution in this when user send mail to IT team then IT team forward that mail to ServiceNow using forwarding rule, so problem is if user wants to provide more information and send reply email to IT team so it create new ticket instead of update because of forwarding rule.
for example: I've laptop issue then I send email to it team
And from it team it forwarded to snow and incident created.
Now imagine that if user wants to provide more information and send reply email to it care then t's create new ticket instead of updating it.
anyone have idea on this how we can solve this.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2023 05:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2023 04:35 PM
Hi, when your task is created the end user should be sent an email confirming task creation and the task number. End user process should be to reply to that email if they want to update the task.
ServiceNow will then identify the target task via the messages watermark, or by task number if the message subject is in the response format IE Re: INC12345
Inbound email action processing (servicenow.com)
If the end user is not replying to a message that clearly identifies the target task, you would need try and work our which task to update using an inbound action to check message body for identifiers IE task number. If no match was found, you would have no way to correlate the task exactly and would need to ignore the message or guess as to which user task the response related to based on some other value (or the user only having 1 active task).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 02:19 AM
Thanks for your answer.
Suppose I got subject as FW: Incident INC0012345 has been assigned to group IT Support in ServiceNow.
how I can use it for update incident (Note: I already create one inbound Email action for forward and setting caller name using it)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 02:34 AM
Hello @Sahil Khan1 ,
You can write code in the forward email action.
Do the GlideRecord sys_email table then add filter with UID and Subject of email and get message ID
then do GlideRecord on incident table and filter with messageID
see below sample code
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 03:10 AM