vote up 0 vote down star

Hi,

I'm using the MAPI code by Dave Brooks.

I am attempting to programatically send out a Crystal Report that is generated.

When I run through the code without threading everything runs fine. The problem is when I use threading I get the return error "General MAPI failure [2]".

I have never used threading before and understand that there are dangers involved. Can anyone provide any insight into this issue? NOTE: I've removed exception handling to make the code clearer.

Private Sub RunReport()
    SetParameters()
    SaveReportFile()


    Dim operation As New ThreadStart(AddressOf SendEmail)
    Dim theThread As New Thread(operation)
    theThread.Start()
End Sub

Public Sub SendEmail()
   Dim m As MAPI
   m = New MAPI()
   Dim email As String
   For Each email In emailAddress
       m.AddRecipientBCC(email)
   Next email
   m.AddAttachment(@"c:\temp\report.pdf")
   m.SendMailPopup("Requested Report", "")
End Sub
flag

80% accept rate
MAPI is a COM api so you will to check whether MAPI even supports multi-threading. Also, do you absolutely have to use MAPI? If you're simply sending email, can you just use the SMTP support built into the .NET framework found in System.Net.Mail? Then at least you aren't using a COM api. – Jeremy Wiebe Apr 24 at 0:13

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.