# Comment lines begin with #
# The header is separated from the message body by the following line: @@@




# HEADER DESCRIPTION
#
# If a form field is required (it must be filled in by the customer) put a "*" before the field definition.
# The form field definition looks like this:
#
#	{Language Constant}={Field Type}
#
# The language constant defines the form field's label.
# It must be defined in the relevant language files in the /languages/ directory.
# These are the /languages/xx-XX/xx-XX.com_mailorder.ini files.
#
# The possible field types are as follows:
#	text 			- defines an input type="text" form field
#	textarea 		- defines a textarea form field
#	select:{options}	- defines a select form field. {options} is a coma separated list of language constants representing the select's options
#
#	Field Type = select example:
#
#	MO_SELECT_CURRENCY=select:MO_EUR,MO_USD,MO_JPY,MO_CHF
#
#	The definition above defines a drop down list with label MO_SELECT_CURRENCY and possible options MO_EUR, MO_USD, MO_JPY and MO_CHF.
#	All these language constants must be defined in the language files: MO_SELECT_CURRENCY, MO_EUR, MO_USD, MO_JPY and MO_CHF!




# MESSAGE BODY DESCRIPTION
#
# On mail order submit the language constants, defined in the header and used in the message body, will be replaced by the relevant user submitted data.
# The resulting e-mail body will be sent to the desired e-mail, set up in the MailOrder's settings. There are two special tags which are always available, regardless of the template:
#
#	{TITLE} 	- this tag will be replaced with the entity title;
#	{LINK} 		- this tag will be replaced with the link to the page, from which the entity has been ordered.
#
# Please note that the blank lines in the message body are NOT ignored!


#*********************************************************#
#********************  Header START  *********************#
#*********************************************************#

*PRODUCT_QUANTITY=text
*YOUR_NAME=text
*YOUR_EMAIL=text
YOUR_PHONE=text
*YOUR_ADDRESS=textarea

#*********************************************************#
#*********************  Header END ***********************#
#*********************************************************#

#*********************************************************#
#**************  Message body delimiter ******************#
#*********************************************************#
@@@
#*********************************************************#
#*****************  Message body START  ******************#
#*********************************************************#
An item has been ordered!
Title: {TITLE}
Link: {LINK}
Quantity: PRODUCT_QUANTITY

Client details:
Name: YOUR_NAME
E-mail: YOUR_EMAIL
Phone: YOUR_PHONE
Address:
YOUR_ADDRESS
#*********************************************************#
#*****************  Message body END  ********************#
#*********************************************************#