Skip to content

ParseEML

Parses an EML (RFC 822) file and returns a message instance.

1
$Messages.ParseEML(message: ( string | FileInfo )):Message

Parameters

( string | FileInfo ) message
    The EML file to parse. This can be a Base64 encoded string, a file ID, or a FileInfo instance.

Returns

A Message instance representing the parsed EML file.

Remarks

An error will be thrown if the message argument is not a valid EML file or a valid instance of the accepted types.

See Also