How to get Attachment value from "$File" Item? using C# (Lotus Notes).

Posted by Pari on Stack Overflow See other posts from Stack Overflow or by Pari
Published on 2009-09-16T07:45:58Z Indexed on 2010/03/22 8:11 UTC
Read the original article Hit count: 164

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about c#

Related posts about lotus-notes