docs

Home All functions Legacy functions Categories

Legacy behavior notes

vuSetSaveFolder()

Clarion prototype

Prototype: vuSetSaveFolder(*CSTRING InFolder), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetSaveFolder’)

Description

This is the legacy vuMail function name.

Preferred function name:

This function is exported for backward compatibility and behaves identically to vuGlobalsSetEmailFolder(). It sets the outgoing .eml save folder used by normal sends, CSV-file sends, and setup/autodetect test-send messages.

Example (Clarion)

rc     LONG
folder CSTRING(260)

folder = 'C:\MyApp\SentMail'
rc = vuSetSaveFolder(folder)

IF rc = 1
  MESSAGE('Sent-mail save folder set to: ' & CLIP(folder))
END
Home All functions Legacy functions Categories