Clarion prototype
Prototype: vuSetSimpleHTMLHeaderImage(*CSTRING InHeaderImageFile), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetSimpleHTMLHeaderImage’)
Sets the optional header image file used by Simple HTML mode.
Parameters
| Name |
Description |
| InHeaderImageFile |
Image file path or file name to place above the body content. Pass a blank string to clear it. |
Example (Clarion)
rc LONG
headerImage CSTRING(260)
headerImage = 'C:\Images\CompanyHeader.png'
rc = vuSetSimpleHTMLHeaderImage(headerImage)
IF rc = 0
MESSAGE('Header image was not accepted: ' & vuMailLastError())
END
Notes
- This uses the same general image-path behavior the existing HTML image handling already uses.
- A bare file name can be used when that already works in your current vuMailKit image workflow.
- The image is part of the HTML version of the message. Plain-text readers rely on the plain-text alternative instead.