PDA

View Full Version : Accessing Emails in LOTUS Notes folder



maridawson
04-04-2012, 06:50 AM
Hi all,
I need help in accessing the emails in a specific folder of lotus notes. Currently I have a code that works perfectly for Getview of Inbox, but when I change this code to point to specific folder it doent work :dunno . Please help me with the syntax for pointing to the lotus notes folder.

This is what I am using currently,
Set No_View = Mail_Db.GetView("($Inbox)")

I need to point to a specific folder now. For example if the emails are in the folder "Statusreport" , how should I specify?

Set No_View = Mail_Db.GetView("($Statusreport)") or
Set No_View = Mail_Db.GetView(Statuseport) or I dunno . I tried everything.

Also I am using a german version of the lotus notes. The folder that I created was under the folders(Ordner in german) list. How should I specify the path?

Please :help

maridawson
04-04-2012, 08:09 AM
Hi all,
Figured it out. Its simply,

Set No_View = Mail_Db.GetView("Statusreport") , If Statusreport is the folder that contains your emails :banghead: .