opening Outlook screen from C#
Hi:
I'm trying to open the outlook screen from an application in c#, so the client could change any aspect of the message and later send it. This is the example I use in VB6:
Dim objSession As MAPI.Session
Dim objMessage As MAPI.Message
Set objSession = CreateObject("MAPI.Session")
Set objMessage = objSession.Outbox.Messages.Add("", "")
objMessage.Update
objMessage.Send True, True
Can anyone suggest me an example in c# of how to do this. I would like to have the option of opening the outlook express screen (last line).
Thanks.
J.