[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Pop3 Gambas & Gmail.
[Thread Prev] | [Thread Next]
- Subject: Re: Pop3 Gambas & Gmail.
- From: Bruce Steers <bsteers4@xxxxxxxxx>
- Date: Fri, 18 Oct 2024 12:47:57 +0100
- To: user@xxxxxxxxxxxxxxxxxxxxxx
Does Pop3Client.Open return an error like Dialog.OpenFile ? So if true it means failed ? Everything else looks correct. try.. If Not $Pop.Open() then Print "Mensajes: " & $Pop.Stat[0] ' Messages numbers. Endif On Fri, 18 Oct 2024 at 09:43, System64 Development <64xcode@xxxxxxxxx> wrote: > Hi, > > I use this code to connect to a Gmail mailbox > > $Pop = New Pop3Client > $Pop.Host = "pop.gmail.com" > $Pop.port = 995 > $Pop.User = "myname@xxxxxxxxx" > $Pop.Encrypt = True > $Pop.Password = "mypassword" > If $Pop.Open() Then > Print "Mensajes: " & $Pop.Stat[0] ' Messages numbers. > Endif > > But doesn't work. > > ¿Is due to Gimail or perhaps the code is wrong? > > Im trying to made a program that: > > Read each messages from the mailbox > > Process the all the mails and create a pdf file for each one. > > Answer to all the "emailunique/senders" adding one attachment > > Martin. > > >
Re: Pop3 Gambas & Gmail. | Bruce Steers <bsteers4@xxxxxxxxx> |
Pop3 Gambas & Gmail. | System64 Development <64xcode@xxxxxxxxx> |