I would like to populate the list of mailboxes from "Mail" folder of Domino using C# and Interop.Domino.dll.
I can connect to the Notes database and access all nsf files, but how can I access only the nsf files in the Mail Folder?
I am using below code:
while (_localDatabase != null)
{
dbString = _localDatabase.Title;
TreeNode objRootNode = new TreeNode(dbString);
objForm.tvwExchDomain.Nodes.Add(objRootNode);
dbCount = dbCount + 1;
_localDatabase = dir.GetNextDatabase();
}
Kindly suggest me some links or sample code which will make my work simpler. I am using Domino Server 8.5.