[an error occurred while processing this directive]
Introduction to Formatted Outputs

There are two methods of passing form data to email, files and the users's screen: non-formatted output, and formatted output.

For non-formatted output, you have very little control over how the data is formatted. You simply specify a file name, and/or an email address, and all the data in the form is sent to that email address or appended to that file. The only thing you control in non-formatted output is the field separator (typically a newline or comma), the value delimiter (typically a double quote), and whether or not you want field names as well as field values included in the output. All options for non-formatted output are controlled by parameters either in the form's configuration file or as hidden fields in the form itself.

You will want to use formatted output, in addition to or instead of non-formatted output, if any of the following conditions pertain:

Formatted Outputs have three basic parts:

They are discussed in detail in the next few sections of the Forms Processor documentation.

[an error occurred while processing this directive]