Lotus Notes @command 将当前电子邮件标记为已读?

发布于 2024-09-26 13:48:11 字数 31 浏览 1 评论 0原文

有谁知道如何使用@命令将当前电子邮件标记为已读?

Does anyone know of a way to mark the current email as read using an @command?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

痴情换悲伤 2024-10-03 13:48:11

如果“当前文档”是指视图中选定的文档,则可以使用

ToolsMarkSelectedRead @Command

在视图或文件夹中将所有选定文档标记为已读。

语法

@Command( [ToolsMarkSelectedRead] )

用法

  • 数据库必须在视图级别打开
  • 文档必须以阅读或编辑模式打开
    注意 在某些数据库中,视图和文件夹中已读和未读文档的显示没有区别。

该命令在 Web 上不起作用。

另外,除非是 R8 中的新方法,否则 NotesDocument.MarkRead 不是现有方法。执行此操作的唯一方法是调用 NotesDocument.Save,并为 markRead 参数传入 true:

flag = notesDocument.Save( force, createResponse [, markRead ] ) 

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

  • A database must be open at the view level
    or
  • A document must be open in Read or Edit mode
    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:

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