| Home | All functions | Legacy functions | Categories |
Prototype: vuViewMail(*CSTRING InFileName), SIGNED, PROC, PASCAL, RAW, NAME(‘vuViewMail’)
Opens the specified mail file (for example .eml) using the default Windows shell association.
| Value | Meaning | |—|—| | 1 | File open request started. | | 0 | Failed. Typical cases include blank path or file not found. Error details are available in vuMailLastError(). |
mailFile CSTRING(260)
rc LONG
mailFile = 'C:\Temp\sample.eml'
rc = vuViewMail(mailFile)
IF rc = 0
MESSAGE('vuViewMail failed: ' & vuMailLastError())
END
| Home | All functions | Legacy functions | Categories |