docs

Home All functions Legacy functions Categories

vuPOP3Delete()

Clarion prototype

Prototype: vuPOP3Delete(LONG InMessageNumber), LONG, PROC, PASCAL, RAW, NAME(‘vuPOP3Delete’)

Purpose

Marks one POP3 message for deletion on the server.

Parameters

Parameter Type Description
InMessageNumber LONG 1-based POP3 message number to delete.

Return value / error codes

| Value | Meaning | |—|—| | 0 | Message marked for deletion. |

Example (Clarion)

rc    LONG
msgNo LONG

msgNo = 1
rc = vuPOP3Delete(msgNo)

Notes

Home All functions Legacy functions Categories