Is there a way in Lotus Notes (using either @Formula or LotusScript) to get the mail file path of the current user?
1
votes
2 Answers
6
votes
Dim maildb As New NotesDatabase("", "")
Call maildb.OpenMail
gives you the mail database of current user.
maildb.FilePath
returns the file path.