Difference between revisions of "MAILATTACH()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to save a mail message attachment to a file
 
Function to save a mail message attachment to a file
 
  
 
==Syntax==
 
==Syntax==
 
MAILATTACH(<expN>, <expC>)
 
MAILATTACH(<expN>, <expC>)
 
  
 
==See Also==
 
==See Also==
 
[[CLOSEMAIL()]], [[COUNTMAIL()]], [[DELETEMAIL()]], [[MAILCLOSE()]], [[MAILCOUNT()]], [[MAILDELETE()]], [[MAILERROR()]], [[MAILHEADER()]], [[MAILNODENAME()]], [[MAILOPEN()]], [[MAILREAD()]], [[MAILSAVEAS()]], [[MAILSEND()]], [[MAILUSERNAME()]], [[OPENMAIL()]], [[READMAIL()]], [[SENDMAIL()]]
 
[[CLOSEMAIL()]], [[COUNTMAIL()]], [[DELETEMAIL()]], [[MAILCLOSE()]], [[MAILCOUNT()]], [[MAILDELETE()]], [[MAILERROR()]], [[MAILHEADER()]], [[MAILNODENAME()]], [[MAILOPEN()]], [[MAILREAD()]], [[MAILSAVEAS()]], [[MAILSEND()]], [[MAILUSERNAME()]], [[OPENMAIL()]], [[READMAIL()]], [[SENDMAIL()]]
 
  
 
==Description==
 
==Description==
Line 22: Line 19:
 
|-
 
|-
 
|}
 
|}
 
  
 
==Example==
 
==Example==
Line 33: Line 29:
 
</code>
 
</code>
  
 
==Products==
 
Recital, Recital Server
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Mail]]
 
 
[[Category:Mail Functions]]
 
[[Category:Mail Functions]]

Revision as of 09:21, 7 December 2012

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