docs

Home All functions Legacy functions Categories

vuLogSetFile()

Description

Sets the mail log file path. (legacy name: vuSetMailLog()).

Previously exported as (legacy name, still supported):

Parameters

Returns

A LONG value indicating the result.

Notes

Use vuGlobalsSave() if you want to persist it to the registry (key: “SentLogFile”).

Example (Clarion)

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