Issue facing on after insert business rule
I am trying to fetch single email from sys_email_log table. Script: updateCounter();function updateCounter() {var logGR = new GlideRecord('sys_email_log');logGR.addQuery('email', current.sys_id);logGR.query(); if (logGR.next()) { gs.info("I...
