docs

Home All functions Legacy functions Categories

vuPOP3Count()

vuPOP3Count(),LONG,PROC,PASCAL,RAW,NAME('vuPOP3Count')

Purpose

Gets the message count from the active POP3 mailbox.

Parameters

This function has no parameters.

Return value / error codes

Example (Clarion)

MAP
  MODULE('vuMail.dll')
    vuPOP3Count(),LONG,PROC,PASCAL,RAW,NAME('vuPOP3Count')
  END
END

msgCount LONG

msgCount = vuPOP3Count()
IF msgCount >= 0
  MESSAGE('POP3 messages available: ' & msgCount)
END

Notes

Home All functions Legacy functions Categories