MAILATTACH()

From Lianjapedia
Jump to: navigation, search

Purpose

Function to save a mail message attachment to a file

Syntax

MAILATTACH(<expN>, <expC>)

See Also

CLOSEMAIL(), COUNTMAIL(), DELETEMAIL(), MAILCLOSE(), MAILCOUNT(), MAILDELETE(), MAILERROR(), MAILHEADER(), MAILNODENAME(), MAILOPEN(), MAILREAD(), MAILSAVEAS(), MAILSEND(), MAILUSERNAME(), OPENMAIL(), READMAIL(), SENDMAIL()

Description

The MAILATTACH() function saves the attachment from the specified mail message, <expN>, to the file named in <expC>. MAILATTACH() returns .T. (true) if the attachment is saved successfully and .F. (false) otherwise.

Parameters Required Default Description
<expN> Yes None Numeric value specifying the mail message to read
<expC> Yes None The name of the file to be created to contain the attachment

Example

if mailattach(1, "mailattach.zip")
    ! unzip mailattach.zp
else
    ? "Mail attachment could not be saved."
endif