Available tags
Submit.EmailFieldValue
Returns the value from the field that is selected as email field.
@GetString("Submit.EmailFieldValue")
Submit.MailSubject
Returns the subject for the e-mail with the form data.
@GetString("Submit.MailSubject")
Submit.MailText
Returns the text for the e-mail with the form data.
@GetString("Submit.MailText")
Submit.ReceiptSubject
Returns the subject for the receipt e-mail with the form data.
@GetString("Submit.ReceiptSubject")
Submit.ReceiptTemplateText
Returns the text that is rendered when the form is submitted and you are redirected to a confirmation template.
@GetString("Submit.ReceiptTemplateText")
Submit.ReceiptText
Returns the text for the receipt e-mail with the form data.
@GetString("Submit.ReceiptText")
Submit.ReceiptUrl
Returns the url to the selected recipt page.
@GetString("Submit.ReceiptUrl")
Available loops
AllFields
The AllFields
loop lets you display information about all fields of the form.
@foreach (LoopItem item in GetLoop("AllFields")){ <p>@item.GetValue("TagName")</p> }
Fields
The Fields
loop lets you display information about the form's fields.
@foreach (LoopItem item in GetLoop("Fields")){ <p>@item.GetValue("TagName")</p> }
FieldValues
The FieldValues
loop lets you display information about all values of the field.
@foreach (LoopItem item in GetLoop("FieldValues")){ <p>@item.GetValue("TagName")</p> }
Form.Submits
The Form.Submits
loop lets you display available data of the form submits.
@foreach (LoopItem item in GetLoop("Form.Submits")){ <p>@item.GetValue("TagName")</p> }
Options
The Options
loop lets you display various information about available options of the confirmation.
@foreach (LoopItem item in GetLoop("Options")){ <p>@item.GetValue("TagName")</p> }