- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2017 08:43 AM
Hello all,
I know we are able to check System Mailbox to see which emails have been sent, received, etc., but I want to see if there is a log that keeps track of resent emails.
We have a user who couldn't find an approval request email so I resent it through Emails -> System Logs -> Clicked Resend button, but not sure where I can check if the email was actually sent because the previous email is showing in the Email Log. (e.g. Original email was sent 8/28/17 and I resend the email on 9/14/17)
Any assistance this would be great!
Thanks,
Grace
**We are on Istanbul Patch 6
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2017 09:03 AM
That you can check in System Policy -> Event Log.
To find the exact log which is created from you, just add highleted code in "Reprocess Email" UI action something like below and take the sys_id and search it in event logs
var evt = new GlideRecord('sysevent');
evt.initialize();
evt.process_on = gs.nowDateTime();
evt.name = "email.read";
evt.parm1 = current.sys_id;
var evtId=evt.insert();
gs.addInfoMessage('event created to reprocess email "' + Packages.org.apache.commons.lang.StringEscapeUtils.escapeXml(current.subject) + '"'+"evtId: "+evtId);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2017 08:57 AM
Doesn't a resend add another "sent" entry to the logs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2017 08:50 AM
I checked and it doesn't. I did see that "Headers" box is updated with the new email date and time.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2017 08:59 AM
Hi Grace/Dave,
So I checked in my instance and checked 'Resend' UI action as well.
'Resend' button is only going to change below fields of the email record.So that means, it is not going to create a separate record.
current.mailbox = "outbox";
current.type = "send-ready";
So you can check the Updated field, which will show timestamp when you resent it.
Hope this helps.
Do not feel shy to mark correct or helpful answer if it helps or is correct.
Best Regards,
Nitesh Asthana
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2017 08:51 AM
Thanks Nitesh, I see that the updated field does have the correct information.