从“mail\ServerMailFile.nsf”访问邮件 使用“Interop.Domino.dll”从 Domino 服务器获取文件
我可以从“mail/usermail.nsf”文件中打开联系人、待办事项列表。 但无法打开或访问其中的邮件。
我使用下面的代码来访问“日历”:
_serverDatabase = _lotesNotesSession.GetDatabase("", "mail\ServerMailFile.nsf", false);
NotesView LotusNotesView = _localDatabase.GetView("Calendar");
有没有类似的方法来访问邮件?
I can open contacts,to-do list from "mail/usermail.nsf" file.
But unable to open or access mails from it.
I am using below code to access "calender":
_serverDatabase = _lotesNotesSession.GetDatabase("", "mail\ServerMailFile.nsf", false);
NotesView LotusNotesView = _localDatabase.GetView("Calendar");
Is there any similar way to access mail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个 NotesView LotusNotesView = _localDatabase.GetView("($Inbox)");
日历视图仅获取日历文档(会议、提醒、约会等)。
Try this instead NotesView LotusNotesView = _localDatabase.GetView("($Inbox)");
The Calendar view only gets calendar docs (meetings, reminders, appointments, etc).