| Home | All functions | Legacy functions | Categories |
vuPOP3LoadEmail(LONG InMessageNumber),LONG,PROC,PASCAL,RAW,NAME('vuPOP3LoadEmail')
Retrieves and parses one full POP3 message so body, attachment, and embedded-content APIs can be used.
| Parameter | Type | Description | |—|—|—| | InMessageNumber | LONG | 1-based POP3 message number to load. |
0: Message loaded successfully.< 0: POP3 command, message index, or parse/state failure.MAP
MODULE('vuMail.dll')
vuPOP3LoadEmail(LONG InMessageNumber),LONG,PROC,PASCAL,RAW,NAME('vuPOP3LoadEmail')
END
END
rc LONG
msgNo LONG
msgNo = 1
rc = vuPOP3LoadEmail(msgNo)
IF rc < 0
MESSAGE('vuPOP3LoadEmail failed: ' & rc)
END
vuPOP3Connect first.vuPOP3LoadHeader when only headers are required.| Home | All functions | Legacy functions | Categories |