Connected Property


Indicates whether MailBee.POP3 object is connected to POP3 server


Value Type: Boolean
Parameters: None 
Remarks: This property is read-only

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.Connect
If Mailer.Connected Then
  MsgBox "Connected successfully"
  Mailer.Disconnect
End If

See Also:

Connect Method


Copyright © 2002-2022, AfterLogic Corporation. All rights reserved.