UserName Property


The name of the user account on the IMAP4 server.

Usually this is the first part of the email address (e.g. "bill" for "bill@host.com"). Sometimes, however, it can be full email address or something else (it depends on IMAP4 account settings).

Note: This value (if not specified in Connect method parameters) must be set BEFORE calling Connect method.


Value Type: String
Parameters: None 

Usage example:

Dim Mailer
'Using visual basic to create object
Set Mailer = CreateObject("MailBee.IMAP4")
'Using ASP to create object
'Set Mailer = Server.CreateObject("MailBee.IMAP4")
'In ASP use Response.Write instead of MsgBox
Mailer.LicenseKey = "put your license key here"
Mailer.ServerName = "imap.host.com"
Mailer.UserName = "bill"
Mailer.Password = "bill's password"
If Mailer.Connect Then ' Connect to bill@host.com account
  MsgBox "Connected successfully"
  Mailer.Disconnect
End If

See Also:

Connect Method

Password Property
ServerName Property


Copyright 2002-2008, AfterLogic Corporation. All rights reserved.