Click here to Skip to main content
15,916,600 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello to all
I am making the project as coding in c# and designing in silverlight3..
There is an option of E-mail in my project
It has 5 parts
1.) Inbox
2.) adress book
3.) Drafts
4.) Templates
5.) Settings

Now almost all points are completed except the first point i.e "INBOX"
user have there e-mail id at gmail,hotmail,yahoomail e.t.c
Now I want user the facility to check all e-mails of different-2 e-mail id's in my project..
I want to open all Inboxes in my own application..

How it will be possible...
Thanks in advance
Posted
Updated 20-Jan-10 3:34am
v2

1 solution

To get emails from a mail server you usually need to use the IMAP or POP protocols. There are libraries out there that can do this for you, or you can use the TcpStream to create your own. Be warned, though, the latter is a lot of work.

You also want to check that yahoo supports IMAP or POP access, otherwise you're going to need to implement another method. Oh, and I don't think Hotmail supports that sort of access unless you pay for it (though it's been a while since I stopped using hotmail).
 
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