Menu Object
 
Syntax
 
Menu.MsgMailManagement [FolderView][, SearchText][, MAILUSER][, ArchiveID]
 
Description
Opens the Mail Management application. Optionally, the initial mail folder, a search term, a specific mailbox user, and an archive reference can be specified.
 
Parameter
Description
FolderView
Optional. The mail folder to display upon opening. Default value mfvInbox.
Valid values:
mfvInbox (0) = Inbox,
mfvSent (1) = Sent items,
mfvArchivedReceived (2) = Archived received mail,
mfvArchivedSent (3) = Archived sent mail,
mfvSpam (4) = Spam folder.
SearchText
Optional. Pre-fills the search field with the given text.
MAILUSER
Optional. User code of the mailbox to open. When empty, the current user's mailbox is opened.
ArchiveID
Optional. Archive reference to navigate to directly upon opening.
See Also
 
Example
 
Sub Main
    Menu.MsgMailManagement FolderView:=mfvInbox, SearchText:="invoice"
End Sub