Luke101
Luke101

Reputation: 65238

How to send lotus notes email using C#

I need to send a simple lotus notes email using C#. I have already tried using the code here but it is not working. I get this error:

The exception unknown software exception (0xe0434f4d) occured in the application at location 0x7c812afb

Any ideas?

Upvotes: 0

Views: 1536

Answers (2)

Bill Hanson
Bill Hanson

Reputation: 91

Under the build options for your project, make sure that you set the platform target to 'x86' (not 'Any CPU' and not 'x64' - the Domino library is only compatible with 'x86').

If you must target x64, then you'll need to isolate all of your Domino code into a separate x86 project then call that code from your x64 project.

Upvotes: 1

Ken Pespisa
Ken Pespisa

Reputation: 22266

Make sure you have the correct permissions to the COM file you're referencing. Perhaps give read permissions to Everyone just to rule that out.

Upvotes: 0

Related Questions