Lotus Notes Activity Use with Sub Folder

Hi Team,

My issue is related to Lotus Notes Activity,
I want to get mail from Inbox of my Mail different Category. But get lotus notes mail giving me mails of Home.

Please help or provide doc related to the solution of this.

Thanks

2 Likes

Hi
May I know what was specified in the Mail Folder property
Document:

Cheers @ShekharRPA

1 Like

Hi @ShekharRPA

Can you tell us what Mail folder you have set

Thanks
ashwin S

1 Like

When setting Inbox in Get lotus notes mail activity, it is giving home messages, not the in inbox of mail

Hi @ShekharRPA

Have you mention it as [Home]

Thanks
Ashwin S

Actually i want messages present in Share inbox in Lotus notes not from Home

Hi @ShekharRPA
I have the same problem, Have you known the correct way to retrieve message from the custom folder or sub folder?
Best Regards!

Hi, Anyone can suggest ā€¦ .how to get ā€˜Sub-Folderā€™ mail activity in Lotus Notes

Ex: For use inbox mail - ā€œ($Inbox)ā€

Hi @ARahman
Yes,it is.
the custom folder is ā€œcustomnameā€, and in my envrioment, the folder name must be english!

So how to code for Sub-folder?

Hi @ARahman
ā€œfoldername\subfoldernameā€
I try like it,and its worked!

1 Like

Hi Donghai,

Can you share an example with Screenshot or Xaml for the same??

Hi @ShekharRPA
Iā€™m sorry for late to reply.
use the Get IBM Notes Mail Messages activity, then set the MailFolder attribute is ā€œyourmessagefoldername\yourmessagesubfoldernameā€,and set the Password attribute is your Notes password, itā€™s will be worked.
Iā€™m sorry that the Xaml is in the Production enviroment,so I canā€™t share the Screenshot or Xaml.

Actually it is not Sub, It is shared inbox in Lotus notes.

Hi @ShekharRPA
I didnā€™t test for the share folder.
I have got the right folder name by the VBA code, It can list all the correct folder name, so may be you can try it.
Blow is a example,I have not the IBM NOTES client in my computer,so i canā€™t test it.
You can test it.

Sub GetAllViews()
Dim aNotes
Dim aDataBase
Dim aView
Dim j As Integer

Set aNotes = CreateObject("Notes.NotesSession")
Set aDataBase = aNotes.CURRENTDATABASE
j = 1
For Each aView In aDataBase.views
    Cells(j, 1) = aView.Name
    Cells(j, 2) = aView.IsFolder
    j = j + 1
Next
Set aNotes = Nothing
Set aDataBase = Nothing
Set aView = Nothing

End Sub

@donghai can you please shared sample workflow for reading mails from sub folder using lotus notes activity. I am also facing same issue

1 Like

Hi @saleem-shaikh
I am sorry for reply this late.
I just uesed it in production envrioment,no sample and IBM NOTES.
But I think itā€™s easy if you use the english IBM NOTES folder name.