POP3SecureSocket.EncryptPassword

From Xojo Documentation

Property (As Boolean )
aPOP3SecureSocket.EncryptPassword = newBooleanValue
or
BooleanValue = aPOP3SecureSocket.EncryptPassword

Supported for all project types and targets.

If True, the password is encrypted when being sent to the mail server.

Example

// EmailSocket is a POP3SecureSocket on a Window
EmailSocket.Address = "smtp.server.com"
EmailSocket.Port = 519
EmailSocket.EncryptPassword = True
EmailSocket.UserName = "<username>"
EmailSocket.Password = "<password>"
EmailSocket.Connect