| Home | All functions | Legacy functions | Categories |
Prototype: vuSetMailSecurity(*CSTRING InUser, *CSTRING InPassword, LONG InSecurityMode, LONG InUseSsl), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetMailSecurity’)
This is the legacy vuMail function name.
Preferred function name:
This function is exported for backward compatibility and behaves identically to vuSmtpSetSecurity().
rc LONG
userName CSTRING(256)
password CSTRING(256)
userName = 'sender@example.com'
password = 'app-password-or-smtp-password'
rc = vuSetMailSecurity(userName, password, 1, 1)
IF rc = 0
MESSAGE('SMTP security was not accepted: ' & vuMailLastError())
END
| Home | All functions | Legacy functions | Categories |