docs

Home All functions Legacy functions Categories

vuGetMailSecurity()

Clarion prototype

Prototype: vuGetMailSecurity(*CSTRING OutUser, *CSTRING OutPassword, *LONG OutSecurityMode, *LONG OutUseSsl), SIGNED, PROC, PASCAL, RAW, NAME(‘vuGetMailSecurity’)

Description

This is the legacy vuMail function name.

Preferred function name:

This function is exported for backward compatibility and behaves identically to vuSmtpGetSecurity().

Example (Clarion)

rc       LONG
userName CSTRING(256)
password CSTRING(256)
secMode  LONG
useSsl   LONG

userName = ''
password = ''
secMode = 0
useSsl = 0

rc = vuGetMailSecurity(userName, password, secMode, useSsl)
IF rc = 1
  MESSAGE('User=' & CLIP(userName) & '|Security=' & secMode & '|SSL=' & useSsl)
END
Home All functions Legacy functions Categories