Lotus Notes @command 将当前电子邮件标记为已读?
有谁知道如何使用@命令将当前电子邮件标记为已读?
Does anyone know of a way to mark the current email as read using an @command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果“当前文档”是指视图中选定的文档,则可以使用
ToolsMarkSelectedRead @Command
在视图或文件夹中将所有选定文档标记为已读。
语法
@Command( [ToolsMarkSelectedRead] )
用法
或
注意 在某些数据库中,视图和文件夹中已读和未读文档的显示没有区别。
该命令在 Web 上不起作用。
另外,除非是 R8 中的新方法,否则 NotesDocument.MarkRead 不是现有方法。执行此操作的唯一方法是调用 NotesDocument.Save,并为 markRead 参数传入 true:
If by "current document" you mean a the selected document in a view, you can use
ToolsMarkSelectedRead @Command
In a view or folder, marks all of the selected documents as read.
Syntax
@Command( [ToolsMarkSelectedRead] )
Usage
or
Note In some databases, there is no difference in the display of read and unread documents in views and folders.
This command does not work on the Web.
Also, unless it's a new method in R8, NotesDocument.MarkRead is not an existing method. The only way you could do this would be to call NotesDocument.Save, and pass in true for the markRead parameter: