Author |
|
dave Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 07 June 2006 at 7:10pm | IP Logged
|
|
|
When attempting to connect to SMTP server, Connect returns 0, Connected is FALSE. ErrDesc and ServerResponse are blank.
Is 0 a failed connect? If so, what is the error?
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 08 June 2006 at 7:12am | IP Logged
|
|
|
Could you please enable logging SMTP session into a file, run your code again, try to
reproduce the problem and send the log file to support@afterlogic.com? Thus, we will be able to investigate the problem in more detail.
If you are using MailBee.SMTP object, you can enable logging as shown below (in VB syntax):
Code:
Dim oSmtp
Set oSmtp = CreateObject("MailBee.SMTP")
oSmtp.EnableLogging = True
oSmtp.LogFilePath = "C:\my_log.txt"
oSmtp.ClearLog
|
|
|
Make sure your application has permissions to write into the specified location.
It also would be helpful if you provide us with the part of code where you are using MailBee.SMTP.
Regards,
Alex
|
Back to Top |
|
|