Timeout Property
Specifies timeout value (the maximum amount
of time to wait for response from POP3 server before returning an error) in
seconds.
Default is 30 sec.
Value Type: | Long | |
Parameters: | None |
Usage example:
Dim Mailer 'Using visual basic to create object Set Mailer = CreateObject("MailBee.POP3") 'Using ASP to create object 'Set Mailer = Server.CreateObject("MailBee.POP3") 'In ASP use Response.Write instead of MsgBox Mailer.LicenseKey = "put your license key here" Mailer.ServerName = "mailserver.com" Mailer.UserName = "MyName" Mailer.Password = "MyPassword" Mailer.Timeout = 60 ' 1 min Mailer.Connect If Mailer.Connected Then MsgBox "Connected successfully" Mailer.Disconnect End If
See Also:
UserName Property
Password Property
AuthMethod Property
Connect Method
Copyright © 2002-2024, AfterLogic Corporation. All rights reserved.