Does anyone know of a way to mark the current email as read using an @command?
|
feedback
|
|
I don't believe there is an @Command for marking documents read. There is a script method - NotesDocument.MarkRead(). Of course, you could run a script agent (using @Command[ToolsRunMacro]), and have the script agent get the current document and mark it read.
| |||
|
feedback
|
|
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
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:
| |||
feedback
|