11/08/2022 10:05 AM
Is there a table other than the emailhistory that holds a list of the emails that have been sent out? I am getting a "No Data Found" when searching for any data on this table.
select *
from emailhistoryprocess
Thank you!
11/08/2022 10:13 AM
Hi,
Please check if this helps. There was already a similar question posted.
select SUBJECTOFEMAIL,TOADDRESS,CCADDRESS,BODYOFEMAIL,PROCESSINSTANCEID from EMAILHISTORY_ARCHIVE where TOADDRESS ='email@email.com' order by emailhistorykey desc limit 10
Thanks
Shyam
11/08/2022 10:42 AM
emailhistoryprocess : When an Email History job is run, emails are processed and moved to EmailhistoryProcess.
EMAILHISTORY_ARCHIVE - Emails that are successfully processed from EmailhistoryProcess are moved to the EmailHistory_archive table
EMAILHISTORY - emails that are not processed are moved to the EmailHistory table.
Reference : https://saviynt.freshdesk.com/support/solutions/articles/43000654902-release-notes-v5-5-sp3-11
select SUBJECTOFEMAIL,TOADDRESS,CCADDRESS,BODYOFEMAIL,PROCESSINSTANCEID from EMAILHISTORY_ARCHIVE where TOADDRESS ='email@email.com' order by emailhistorykey desc limit 10