Author |
|
cecilia Newbie
Joined: 28 October 2008
Online Status: Offline Posts: 2
|
Posted: 28 October 2008 at 9:14pm | IP Logged
|
|
|
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 |
|
|
cecilia Newbie
Joined: 28 October 2008
Online Status: Offline Posts: 2
|
Posted: 28 October 2008 at 9:41pm | IP Logged
|
|
|
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 |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 29 October 2008 at 4:18am | IP Logged
|
|
|
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 |
|
|