February 2017
Intermediate to advanced
376 pages
6h 12m
English
In the Service-Now operational environment, a support team faces many issues related to e-mails. In this recipe, you will see how to troubleshoot them.
To step through this recipe, you should have an active Service-Now instance, valid credentials, and the admin role.
In such cases, you need to create a condition to not process these autoreply e-mails:
if(email.from.indexOf("noreply@externalsystem.com")
>= 0 ||
email.from.indexOf("salessuport@packt.com ") >=
0
{
event.state="stop_processing";
}Read now
Unlock full access