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
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
Hi
May I know what was specified in the Mail Folder property
Document:
Cheers @ShekharRPA
When setting Inbox in Get lotus notes mail activity, it is giving home messages, not the in inbox of mail
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!
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
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.