How to check mail read or unread property (Lotus Notes) using C #

I want to check the mail read and read property using C #. I want to check if the mail is read or not. (using Domino.dll)

+2


source to share


1 answer


The unread labels table is not displayed via the "back-end classes" (which is what you most likely use with Domino.dll). This is available for lower level C APIs - it's a bit more than necessary, but if you're curious, have a look at "NSFDbGetUnreadNoteTable" which takes a handle to the database and returns a handle to "IDTable" (essentially a collection of documents).



IBM documentation

+3


source







All Articles