| AutoResponder Section |
| ResponseEmail |
The sender's email address of the AutoResponse. This is required to send an AutoResponse message. |
| ResponseHTMLTemplate |
The template used to send the AutoResponse HTML email message. The file path to the file must be defined as a relative path from the config.xml file. |
| ResponseSubject |
The subject message of the AutoResponse. |
| ResponseTXTTemplate |
The template used to send the AutoResponse TEXT email message. The file path to the file must be defined as a relative path from the config.xml file. This is required to send an AutoResponse message. |
| SendResponse |
Set to true to allow the sending of an AutoResponse message if all information is provided. NOTE : The email address the AutoResponse message will respond to must be a form field or querystring field titled "email". |
| Data Section |
| ConfigFile |
Location of the configuration file. |
| DebugMode |
This boolean (true/false) will allow the TemplateMailer system to send additional debugging information with the Text email message. |
| DotNetControl |
This boolean (true/false) when set to false will not process any .NET controls. |
| SelectionVars |
The is a comma-delimited list of all checkbox and radio button form fields within the form. In the event a person does not select one of the options, TemplateMailer will parse the list and replace the ##FIELDNAME## with an empty/null value. |
| DSN |
Enter the fully qualified Connection String used to establish a connection to your database. Available connection types use OLE or SQL Server. |
| SQLString |
Enter the full INSERT or UPDATE SQL statement to be used with TemplateMailer. Use the same ##FIELDNAME## settings for field value placement as used with the standard email templates. |
| SP_Name |
Enter the Stored Procedure name to be used in conjunction with the DSN. The TemplateMailer will attempt to match all available fields and user added values against expected Procedure parameters. |
| Log File Secton |
| IncludeLogFile |
This boolean (true/false) will allow the TemplateMailer system to log results passed through the system to a separate file. |
| LogDelimiter |
If not LogFileTemplate is used, this is the delimiter to separate field results. The default is "|". |
| LogFile |
The file to be used to record results passed through the system. The file path to the file must be defined as a relative path from the config.xml file. |
| LogFileTemplate |
The template used to populate the log file. All fields are replaced using the same format ##FIELDNAME## and can be formatted in any manner including comma-delimited, tab-delimited, XML or others. The file path to the file must be defined as a relative path from the config.xml file. A special field ##DATETIME## is available to record the date and time of the transaction. |
| Mail Message Section |
| AllowByPassRecipientList |
This boolean (true/false) will allow the TemplateMailer to bypass the list of allowed recipient domains specified in the CONFIG.XML file. Warning, by setting this to TRUE can allow this to send to any recipient and open your TemplateMailer to potential spam attacks. It is recommended that this feature be turned on dynamically within your code behind, review the TemplateMailer web site for more details. |
| BCCEmail |
A comma delimited list of addition email addresses to BCC the email message. |
| CCEmail |
A comma delimited list of addition email addresses to CC the email message. |
| RecipientEmail |
The email address of the recipient of the mail message. |
|
| SenderEmail |
The email address to use as the sender of the message. |
| ReplyToEmail |
The email address to display as sending replies. NOTE: not all email clients support this feature. Be sure the anti-spam features of you relaying mail server will allow this address to be used. |
| SendIPInformation |
This boolean (true/false) will allow the TemplateMailer system to append the user's IP address and Reverse DNS information to the end of the Text email message. |
| SendMail |
This boolean (true/false) will allow the TemplateMailer system to send email or not. If testing a form, set to false. |
| Subject |
The subject message of the email to be sent. This field is parsed for all available variables. Review the Template Design section for proper documentation. |
| Mail Server Section |
| MailPort |
Reset the mail server port to connect to for sending mail. |
|
| MailServer |
Reset the mail server used to send mail messages. Review the restrictions of this field in the NodeElement Definitions section of this document. |
| SecondaryMailServer |
This is the IP or URL of the secondary mail server to send email messages through. This is used in the event the primary MailServer fails to respond. This follows the same restrictions as the Primary MailServer setting. |
| TertiaryMailServer |
This is the IP or URL of the tertiary mail server to send email messages through. This is used in the event the primary and secondary MailServers fails to respond. This follows the same restrictions as the Primary MailServer setting. |
| SMTPpassword |
If the mail server used to send mail messages requires authentication, provide the password. |
| SMTPusername |
If the mail server used to send mail messages requires authentication, provide the username. |
| Mail Templates Section |
| htmlTemplate |
The template used to send the HTML email message. The file path to the file must be defined as a relative path from the config.xml file. |
| IncludeList |
Set to true to allow the inclusion of an array at the bottom of the TEXT email message based upon the LogDelimiter. |
| SendIncludeListasAttachment |
Set to true to allow the array of fields to be added to the email message as an attachment. The IncludeList must also be set to true. |
| ListColonVars |
This boolean (true/false) will allow the TemplateMailer system to list all variables containing ":" in the results. These are usually present in .NET controls. |
| RedirectURL |
This is the URL to redirect the user upon submission of the mail form. If not provided the ThankYouMessage template will be processed and returned to the web browser. |
| SendHTML |
Set to true to allow the sending of HTML message if an htmlTemplate is provided. |
| ThankYouTemplate |
The template used to send the Thank You/Confirmation message to the web browser upon submission. The file path to the file must be defined as a relative path from the config.xml file. |
| TempFolder |
This is the folder where uploaded files to be sent as attachments are stored. This file must have write permissions by the ASPNET user account. For more instructions refer to the Using Attachments section of this document. |
| txtTemplate |
The template used to send the TEXT email message. The file path to the file must be defined as a relative path from the config.xml file. |