从“mail\ServerMailFile.nsf”访问邮件 使用“Interop.Domino.dll”从 Domino 服务器获取文件

发布于 2024-08-01 21:37:09 字数 292 浏览 4 评论 0原文

我可以从“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高跟鞋的旋律 2024-08-08 21:37:09

试试这个 NotesView LotusNotesView = _localDatabase.GetView("($Inbox)");

日历视图仅获取日历文档(会议、提醒、约会等)。

Try this instead NotesView LotusNotesView = _localDatabase.GetView("($Inbox)");

The Calendar view only gets calendar docs (meetings, reminders, appointments, etc).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文