docs

Home All functions Legacy functions Categories

vuMailSaveName(FileName)

Clarion prototype

Prototype: vuMailSaveName(*CSTRING FileName), SIGNED, PROC, PASCAL, RAW, NAME(‘vuMailSaveName’)

Description

Sets the file name (or full path) used when vuMailKit saves the next sent email as an .eml file.

Parameters

Parameter Data Type Description
FileName *CSTRING File name (or full path) to use for the next saved .eml message.

Return value

Notes

Example (Clarion)

ROUTINE:Test_vuMailSaveName   ROUTINE
  DATA
RC        LONG
FileName  CSTRING(260)

  CODE
  FileName = '1234Confirmation.eml'
  RC = vuMailSaveName(FileName)
  STOP('RC=' & RC & '|FileName=' & FileName)
Home All functions Legacy functions Categories