Method MIMEContent():createFromFile() Professional

Create a MIMEContent object from a file.

Syntax
:createFromFile( <cFileName> ) --> oMIMEContent | NIL
Parameters
<cFileName>
<cFileName> specifies the name of the file that is used to create an object of the class MIMEContent.
Return

The class method :createFromFile() creates and returns an instance of the class MIMEContent. If an error occurs, NIL is returned. This may occur when the file cannot be loaded.

Description

The class method :createFromFile can be used to create an object of the class MIMEContent. The object returned by this method contains the content of the file that is passed in parameter <cFileName>.

When <cFileName> is read from disk, its contents will be automatically encoded either as quoted-printable or base64, depending on the filename suffix.

If more control over how the content is encoded is needed, one of the methods :encodeBase64 or :encodeQuotedPrintablecan be used.

In the MIMEMessage sample section, an example can be found where these methods are used to create a html e-mail.

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.