How to retrieve email from Gmail

Go To StackoverFlow.com

0

I have developed a WPF C# application. Sending email from the Gmail account is OK. But I need to receive all mail from the Gmail account. Is there anyway to do this? How to do it? Using third party libraries is not a problem. Thank you for reading...

2012-04-04 05:33
by unique
Use System.Net.Mail as per this question:

http://stackoverflow.com/questions/32260/sending-email-in-net-through-gmai - ColinE 2012-04-04 05:36

That question is based on sending email, not receiving email - Mathias Lykkegaard Lorenzen 2013-08-12 06:47


2

Gmail support IMAP. You have to get a IMAP .NET library to read read your Gmail inbox.

here are few links, that I hope will help you

Link1 Link2 Link3

2012-04-04 06:43
by Pritam Karmakar
Ads