3
Answers

opening Outlook screen from C#

jorge.garcia

jorge.garcia

20y
2.3k
1
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.
Answers (3)