I'm using Interop.Domino.dll to retrieve E-mails from a Lotus "Database" (Term used loosely). I'm having some difficulty in retrieving certain fields and wonder how to do this properly. I've been using NotesDocument.GetFirstItem to retrieve Subject, From and Body.
My issues in this regard are thus:
How do I retrieve Reply-To address...
I want to create a mailbox for each user in a Domino server.
In order to maintain different mailboxes for different user.
And storing their respective mails in it.
example:
User: A
Mailbox: Amailbox storing mails of user A
...
Hi,
I need to create an application using C# such that i can access all the user's mailboxes existing on Server.
So kindly provide me the API which will allow me to access each mailbox( nsf files) of each user stored on the Domino Server.
Basically i am looking for an API by which i can just provide the Domino Server name through whic...
Can anyone suggest me some link where i can get some idea i.e how to list mailbox using LDAP using C#
I am using "Interop.Domino.dll"
...
I would like to populate the list of mailboxes from "Mail" folder of Domino from c# using the above API (Interop.Domino.dll).
I have no problems connecting to Notes, accessing the database.It is easy to access all nsf files but i want to access only only nsf files in Mail Folder i.e Mail files.
I am using below code:
w...
Hi
In C# Get All the .nsf files(Notes Database) from \data\notes directory and populate it in a Listbox or combo box or in Tree View.
I am using "Interop.Domino.dll".
...
I can open contacts,to-do list from "mail/usermail.nsf" file.
But unable to open or access mails from it.
I am using below code to access "calender":
_serverDatabase = _lotesNotesSession.GetDatabase("", "mail\ServerMailFile.nsf", false);
NotesView LotusNotesView = _localDatabase.GetView("Calendar");
Is there any similar way to acces...
I am getting this error when i am trying to access mail file(mail/usermail.nsf) of user ( on different machine) using C#.
I am using "Interop.Domino.dll".
Is this happening because of same user name and organization name?
But i am able to access local User NSF file (user configured on same machine where Domino server installed) where ...
Hi All,
Currently i can access nsf all nsg files.But once i uninstall Lotus Notes form my machine program doesn't work.
I am using "Introp.Domino.dll".
Language: C#
...
I want to get list of Domino Servers on the network, and accordingly login into particular server.
I am using C# / Interop.Domino.dll
Any ideas how to do this?
...
Hi,
I am able to access Mails,Calendars e.t.c from Lotus Notes.
But i am not getting how to access Notes (Notebook).
I am using "Introp.Domino.dll".
...
Hi,
I am trying to login Domino server.
For that i am taking Lotus Notes Password and Domino Server Name from user.
if (notesPassword == "" && serverName == "")
{
MessageBox.Show("Please enter the server name !! ");
return;
}
else
{
if (connectToDomino(notesPassword, serverName))
{
MessageBox.Show("Connection Esta...
I've Lotus Notes database file (.nsf) at some location, let's say: http://intranet.mycompany.com/somewhere/data.nsf
Is it possible in any way to read from that location using any .NET language?
...
Hi,
I want to check mail read and unread property using C#.
i.e want to check whether mail is read or not. (using Domino.dll)
...
Hi ,
I am trying to access Groups from Lotus Notes using C#.
...
Hi,
I trying below code:
NotesSession = _lotesNotesSession.GetDatabase("", NsfFile, false);
_NewDatabase = _NotesSession.CurrentDatabase; ( Note : Showing "Not Implemented" exception.)
_UnreadDocCollection = _NewDatabase.UnprocessedDocuments;
Here i am trying to get list of Read and Unread Mails From Nsf File.
Explanation: When i a...
Hi,
I am making one application where i am reading mails from Lotus Notes.
I have made this application interdependent of Domino Server.
But in this case.If user's Lotus Notes's is configured with Domino server.It shows pop-up for password.
I don't want to show pop-up.And don't want to add text box into UI.
Is there anyway to get NSF...
Hi,
I want to programaticaly change some values to NSF item and then want to save it.(i.e to edit NSF File and then save the editions)
for example:
I want to set Sender name of all mails to "[email protected]".(Using Domino.dll).
Solution I tried: (Swaping of To and From values)
String Temp_From = ((object[])docInbox.GetItemValu...
Hi,
I am not getting "user type" for below function: (using Domino.dll in C#)
_NotesRegister.RegisterNewUser(pLastn,pIdfile,pServer,pFirstn,pMiddle,pCertpw,pLocation,pComment, pMaildbpath,pForward,pUserpw,pAltName,pAltLang,Usertype);
...
Hi,
I have created some Domino Server Users.
And Now want to progaramaticaly add content to it using c# and Domino.dll.
Note: i did not find any way to manually add content (mails,calendar) of one nsf to another nsf file.
...