esmail_merchant 0 Newbie Poster

In my application I want outlook Inbox open for check mail or send mail.
I use this code
System.Diagnostics.Process.Start("OUTLOOK.EXE");
AND
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "OUTLOOK.exe";
proc.Start();
proc.WaitForExit();
BUT using this I can able to open outlook only through my .net browser,But after deployment Same button click Nothing hapened

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.