Search The ForumSearch   RegisterRegister  LoginLogin

MailBee POP3

 AfterLogic Forum : MailBee POP3
Subject Topic: it dosen’t even created pop3 object. Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
cecilia
Newbie
Newbie


Joined: 28 October 2008
Online Status: Offline
Posts: 2
Posted: 28 October 2008 at 9:14pm | IP Logged Quote cecilia

dear,

I'd like to recive a mail sended to people over 100.
But, it dosen't even created pop3 object on my code.
Everyday I heared complain of some client.
Please help me~~
Back to Top View cecilia's Profile Search for other posts by cecilia
 
cecilia
Newbie
Newbie


Joined: 28 October 2008
Online Status: Offline
Posts: 2
Posted: 28 October 2008 at 9:41pm | IP Logged Quote cecilia

cecilia wrote:
dear,

I wanna get the mail that had sended to over than 100 persons.
But, it dosen't even created pop3 object on my code.
Everyday I heared complain of some client.
Please help me~~
Back to Top View cecilia's Profile Search for other posts by cecilia
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6038
Posted: 29 October 2008 at 4:18am | IP Logged Quote Igor

Please try to establish POP3 connection as follows:

Visual Basic code
Code:
Dim Mailer
Set Mailer = CreateObject("MailBee.POP3")
Mailer.LicenseKey = "put your license key here"
If Mailer.Connect("mailserver.com", ,"MyName", "MyPassword") Then
  MsgBox "Connected successfully"
  Mailer.Disconnect
Else
  MsgBox Mailer.ErrDesc
End If


ASP code
Code:
Dim Mailer
Set Mailer = Server.CreateObject("MailBee.POP3")
Mailer.LicenseKey = "put your license key here"
If Mailer.Connect("mailserver.com", ,"MyName", "MyPassword") Then
  Response.Write "Connected successfully"
  Mailer.Disconnect
Else
  Response.Write Mailer.ErrDesc
End If


In case if this doesn't help, please describe the issue in more detail, let us know what exactly doesn't work as expected and what kind of error messages you get.

Regards,
Igor
Back to Top View Igor's Profile Search for other posts by Igor
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide