docs

Home All functions Legacy functions Categories

vuPOP3HaveHTMLText()

Clarion prototype

Prototype: vuPOP3HaveHTMLText(), SIGNED, PROC, PASCAL, RAW, NAME(‘vuPOP3HaveHTMLText’)

Purpose

Checks the currently loaded POP3 message and reports whether an HTML MIME body is available.

Parameters

This function has no parameters.

Return value / error codes

| Value | Meaning | |—|—| | 1 | HTML body content is present. | | 0 | HTML body content is not present. |

Example (Clarion)

hasHtml LONG

hasHtml = vuPOP3HaveHTMLText()
IF hasHtml = 1
  MESSAGE('HTML body is available.')
END

Notes

Home All functions Legacy functions Categories