How to get Attachment value from "$File" Item? using C# (Lotus Notes).
- by Pari
Hi,
I am trying to access Attachment names form "$File" (Lotus Notes).
NotesView inbox = _serverDatabase.GetView("($Inbox)");
NotesDocument docInbox = inbox.GetFirstDocument();
NotesItem file = docInbox.GetFirstItem("$File");
String fileType = file.type.ToString();
( getting fileType value "ATTACHMENT" for mail containing attachments)
I am not getting solution given in:
http://stackoverflow.com/questions/1361695/how-to-access-attachments-from-notes-mail