|
This is your example code. How to connect to gmail.
when i tried to connect with trial version of Rebex mail i do this succeed with this code: // connect and log in Pop3 client = new Pop3(); client.Connect("pop.gmail.com", 995, null, Pop3Security.Implicit); client.Login(email, password); // process messagess... // logount and disconnect client.Disconnect(); after i purchased the normal version. i don't have this method: client.Connect("pop.gmail.com", 995, null, Pop3Security.Implicit); i have only this: // Connect to the server. _pop.Connect(server, port); and i think that gmail need secure connection. please help me connect to gmail. |
|
Gmail does not allow unsecured connection. You have to call following method to connect:
It looks like you purchased the version which is not capable of doing so. E.g. if you ordered the Rebex POP3 you have to upgrade to Rebex Secure POP3. Could you please send me your order number or email used for order to support@rebex.net so I'm able to send you the upgrade link? If the order is not older than 90 days you can upgrade and pay only the price difference. If the order is older you'll still get an upgrade discount. For details see http://www.rebex.net/shop/upgrade.aspx |