Difference between revisions of "MAILATTACH()"

From Lianjapedia
Jump to: navigation, search
Line 11: Line 11:
 
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.
 
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.
  
{| class="wikitable" width=100%
+
{| class="wikitable" width="100%"
 
!Parameters||Required||Default||Description
 
!Parameters||Required||Default||Description
 
|-
 
|-

Revision as of 12:50, 1 February 2013

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