[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-11 Thread ThanderMaX
Working with GMAIL in POP3 is in total mess ... even good'ld outlook hangs ! Now google is also recommending IMAP. Atleast it can fetch message header fast. Skimming message in gmail POP3 will kick u out as it is bandwidth intensive for google. On Nov 11, 2:49 pm, Lauren wrote: > Thanks so muc

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-11 Thread Lauren
Thanks so much for the help. I'll check it out now. On Nov 11, 10:46 am, Processor Devil wrote: > ok, here is "your strategy": > So you want to read all unread files on gmail using .NET. > OK. If you want to do it, you need to set up your gmail account to provide > you pop3 (can be found in acco

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-11 Thread Mike Fry
Benj Nunez wrote: I think the correct quote is: "Give a Man a Fish, Feed Him For a Day. Teach a Man to Fish, Feed Him For a Lifetime" --Lau Tzu I was paraphrasing :-) -- Best regards, Mike Fry Johannesburg.

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-11 Thread Processor Devil
ok, here is "your strategy": So you want to read all unread files on gmail using .NET. OK. If you want to do it, you need to set up your gmail account to provide you pop3 (can be found in account settings) Next step is you need to learn something about POP3, I would recommend you to go to www.answe

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-11 Thread Lauren
And strangely, this has not helped at all. By the way Mike, I'm not looking for someone to write the code for me, I'm just wanting to be pointed in the right direction. On Nov 11, 5:50 am, "Charles A. Lopez" wrote: > Go to the fish store. Buy the fish. > > 2009/11/10 Benj Nunez > > > > > > > I

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Charles A. Lopez
Go to the fish store. Buy the fish. 2009/11/10 Benj Nunez > > I think the correct quote is: > > "Give a Man a Fish, Feed Him For a Day. Teach a Man to Fish, Feed Him > For a Lifetime" --Lau Tzu > > Source: > > > http://ezinearticles.com/?Lao-Tzu---Give-A-Man-A-Fish,-Feed-Him-For-A-Day.-Teach-A-M

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Benj Nunez
I think the correct quote is: "Give a Man a Fish, Feed Him For a Day. Teach a Man to Fish, Feed Him For a Lifetime" --Lau Tzu Source: http://ezinearticles.com/?Lao-Tzu---Give-A-Man-A-Fish,-Feed-Him-For-A-Day.-Teach-A-Man-To-Fish,-Feed-Him-For-A-Lifetime&id=512280 Cheers! Benj On Nov 1

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Cerebrus
The OP is apparently female. That adage does not stand for women ! Correction: "... Teach a woman to fish and she'll feed the whole neighbourhood." :P On Nov 10, 2:23 pm, Mike Fry wrote: > Give hand-outs and the hand will always be out. Teach a man to fish and he'll > feed himself. >

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Processor Devil
I just wanted to say... she doesn't need to learn the complete POP protocol if she can search specific things she wants using google ;-) 2009/11/10 Mike Fry > > Processor Devil wrote: > >> why the RFC? >> On internet is a lot of complete solutions (even in c#), she can look >> through and see so

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Mike Fry
Processor Devil wrote: why the RFC? On internet is a lot of complete solutions (even in c#), she can look through and see some practical example how it works Give hand-outs and the hand will always be out. Teach a man to fish and he'll feed himself. -- Best regards, Mike Fry Johannesburg.

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Processor Devil
why the RFC? On internet is a lot of complete solutions (even in c#), she can look through and see some practical example how it works 2009/11/10 Mike Fry > > Lauren wrote: > > I'm currently at a loss on how to proceed from here. I've tried using >> the LIST command, but it returns message ID's

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Mike Fry
Lauren wrote: I'm currently at a loss on how to proceed from here. I've tried using the LIST command, but it returns message ID's and the size of the mails, which is not what I'm looking for. Is there another command I can use? No wonder you're at a loss! POP is plain text not web based. Get

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-10 Thread Lauren
I'm currently using POP. Here is the code so far: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using Syste

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-09 Thread Mike Fry
Jamie Fraser wrote: Post a code sample please - we have no idea what libraries you are using and therefore cannot advise. Also, are you familiar with the POP protocol? -- Best regards, Mike Fry Johannesburg.

[DotNetDevelopment] Re: Get unread mails in gmail inbox using C#

2009-11-09 Thread Jamie Fraser
Post a code sample please - we have no idea what libraries you are using and therefore cannot advise. On Mon, Nov 9, 2009 at 1:59 PM, Lauren wrote: > > Hi, > > I need to get the number of unread mails from my gmail inbox and loop > through these messages and extract the body. > > I have managed