Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my windows application , i want to show all mails that are received in the outlook.
Is there is any possibilities to do this... Please help any one.
Posted

1 solution

Google "automate outlook .net" and you'll find lots of examples

Office C# app automates Outlook (CSAutomateOutlook) sample in C# for Visual Studio 2010[^]

You're going to end up with annoying security pop-ups though, it's not going to be "seamless". The alternative is to actually unsderstand how email works and realise that Outlook is merely a desktop application that shows what is in an email account. If the mails are in an account on Exchange or a mail server, then rather than automating Outlook you should simply access the emails from the mail server they are on using POP3 or IMAP.

Lastly if you are intending to do this from an asp.net website then don't bother, it's not going to work.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900