Click here to Skip to main content
15,867,756 members
Please Sign up or sign in to vote.
4.00/5 (3 votes)
See more:
I have a code for reading mails from Eudora(same as Outlook) using MAPI

VB
If MAPIsess.SessionID = 0 Then MAPIsess.SignOn()
With MAPImsg
    .SessionID = MAPIsess.SessionID
    .Fetch()
    For i As Integer = 0 To .MsgCount - 1
        .MsgIndex = i
        If .AttachmentCount > 0 And .MsgRead = False Then
            Console.WriteLine("Attachment to Download or Read: " & .MsgIndex & " >> " & .MsgDateReceived & " >> " & .MsgSubject & " >> " & .AttachmentCount)
            If .AttachmentCount > 0 Then
                If .AttachmentPathName <> "" Then
                    Console.WriteLine(.MsgIndex & " >> " & .AttachmentName & " >> " & .AttachmentPathName)
                End If
            End If
    Next
    MsgBox("End")
End With


I can also get the attachment name, my problem is I want to download or read(excel, text, word and others) the attachment.
Posted
Updated 7-Jun-11 20:11pm
v7

1 solution

 
Share this answer
 
Comments
Kim Togo 6-Jun-11 12:30pm    
But this does not solve OP question. Link has nothing to do with MAPI.
hansoctantan 7-Jun-11 2:00am    
yah, I'm using Eudora, its installed in my computer. Eudora is same as Outlook

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900