Difference between revisions of "MAILSAVEAS()"

From Lianjapedia
Jump to: navigation, search
 
Line 16: Line 16:
 
|valign="top"|<expN>||valign="top"|Yes||valign="top"|None||Numeric value specifying the mail message to read
 
|valign="top"|<expN>||valign="top"|Yes||valign="top"|None||Numeric value specifying the mail message to read
 
|-
 
|-
valign="top"|<expC>||valign="top"|Yes||valign="top"|None||The name of the file to be created to contain the lines of the mail message
+
|valign="top"|<expC>||valign="top"|Yes||valign="top"|None||The name of the file to be created to contain the lines of the mail message
 
|-
 
|-
 
|}
 
|}

Latest revision as of 05:03, 9 November 2016

Purpose

Function to save the body of a mail message to a file

Syntax

MAILSAVEAS(<expN>, <expC>)

See Also

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

Description

The MAILSAVEAS() function saves the specified mail message, <expN>, to the file named in <expC>. MAILSAVEAS() returns .T. (true) if the mail message 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 lines of the mail message

Example

if mailsaveas(1, "mailmes.txt")
    vi mailmes.txt
else
    ? "Mail message could not be saved."
endif