docs

Home All functions Legacy functions Categories

vuGlobalsSetEmailFolder()

Clarion prototype

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

Purpose

Sets the in-memory EmailFolder path used by vuMailKit for outgoing .eml message copies.

Parameters

| Parameter | Type | Description | |—|—|—| | InFolder | *CSTRING | Folder path for outgoing .eml message copies. Passing a blank value disables outgoing .eml copy saving. |

Return value / error codes

| Value | Meaning | |—|—| | 1 | Success. |

Example (Clarion)

rc      LONG
folder  CSTRING(520)

folder = 'C:\Temp\vuMail'
rc = vuGlobalsSetEmailFolder(folder)
IF rc <> 1
  MESSAGE('vuGlobalsSetEmailFolder failed: ' & rc)
END

Notes

Home All functions Legacy functions Categories