| Home | All functions | Legacy functions | Categories |
Prototype: vuMailImport(*CSTRING InFileName), SIGNED, PROC, PASCAL, RAW, NAME(‘vuMailImport’)
Loads an RFC822 message file and stores it as the current legacy in-process message.
| Value | Meaning | |—|—| | 0 | Success. | | -1 | Blank file path. | | -2 | File not found or read/parse error. | | -3 | File exists but is empty. |
rc LONG
src CSTRING(260)
src = 'C:\Temp\inbound.eml'
rc = vuMailImport(src)
IF rc <> 0
MESSAGE('Import failed code ' & rc & ': ' & vuMailLastError())
END
| Home | All functions | Legacy functions | Categories |