Mailwrite()
This function writes the email out to disk
Usage
BOOLEAN = Mailwrite(
mail,
filepath,
overwrite
)
Argument | Summary |
---|---|
Mail object | |
filepath | The full path where the file will be written |
overwrite | Flag to determine if the mail file is to be overwritten if already exists. Defaults to false [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
Mailwrite( mail=?, filepath=?, overwrite=? );
Supports passing parameters as a structure using ArgumentCollection:
Mailwrite( ArgumentCollection={ mail : ?, filepath : ?, overwrite : ? } );