TargetName Property


The service principal name (SPN) of the POP3 server.

This value can only be used with Kerberos authentication. If an empty string, it's autodetected as "POP3/<server name>" (which is suitable in most cases).

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.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 = "pop.host.com"
Mailer.TargetName = "POP/host.com"
Mailer.AuthMethod = 5 ' Authenticate with Kerberos
Mailer.UserName = "bill"
Mailer.Password = "bill's password"
Mailer.Connect ' Connect to bill@host.com account
If Mailer.Connected Then
  MsgBox "Connected successfully"
  Mailer.Disconnect
End If

See Also:

Password Property
AuthMethod Property
ServerName Property
Connect Method


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