gmail-pop

Help with gmail message reading with php

Hi ALl I need to read emails from gmail but i cant connect to gmail pop3 server. Can anyone help me here ? Here the code: $pop3 = new POP3; $pop3->server = 'pop.gmail.com'; $pop3->user = 'username'; $pop3->passwd = 'password'; $pop3->debug = true; $pop3->pop3_connect() The result: Warning: fsockopen() [function.fsockopen]: unable t...

timeout with JMAPI???

I am using JM-API for my mailing application. When, i am sending or receiving a single mail, works perfectly. But, if i try to do manipulation on more then single mail (say, copy 1st 3 mails of INBOX to TRASH), timeout occurs. While googling to cure this, i got, 1 [see, 2nd last post by vivek mathur] , 2 and 3. But nothing seems to ...

Pop3 and gmail email deleted after download

Hello I Am writing Pop3 client for gmail. The problem is that when the email is downloaded then it deletes from pop3 server. I have tried sending RSET command to server but it dose not work. Do i have to send RSET just before disconnecting or after downloading each mail? ...

gmail reply to not working with javamail

Hi I can send mails with gmail with javamail But i cannot set the reply to anyhow... the code i m using is... //the actual mail id [email protected] ccAddress = new InternetAddress( "[email protected]"); msg.setFrom(ccAddress); Address[] addresses = new Address[1]; //actually i want to addre...