docs

Home All functions Legacy functions Categories

vuPOP3HaveAttachments()

Clarion prototype

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

Purpose

Checks the currently loaded POP3 message and reports whether attachment parts are present.

Parameters

This function has no parameters.

Return value / error codes

Value Meaning
1 Attachment content is present.
0 No attachment content is present.

Example (Clarion)

hasAttach LONG

hasAttach = vuPOP3HaveAttachments()
IF hasAttach = 1
  MESSAGE('Attachments found.')
END

Notes

Home All functions Legacy functions Categories