| Home | All functions | Legacy functions | Categories |
Sets the mail log file path. (legacy name: vuSetMailLog()).
Previously exported as (legacy name, still supported):
xFileName (CSTRING) - Full path to the log file to be used by vuMailKit.A LONG value indicating the result.
Use vuGlobalsSave() if you want to persist it to the registry (key: “SentLogFile”).
ROUTINE:Test_vuLogSetFile ROUTINE
DATA
cLog CSTRING(520)
RC LONG
CODE
cLog = CLIP(PATH()) & '\MailLog.txt'
RC = vuLogSetFile(cLog)
STOP('RC=' & RC)
| Home | All functions | Legacy functions | Categories |