Templates
Templates are used to degine the eMails, Invoices and Tickets sent from the website. All templates are HTML based, so you can design your layout as you like.
Variables
For easy usage, the available template variables are shown at the right side of the edit page.
Conditional Statements
You can specify conditional statements.
In general, a conditonal statements is like: {if <condition>} text if condition is true {endif}
or {if <condition>} text if condition is true {else} text if condition is false {endif}
or {if <condition>} text if condition is true {else <condition> } text if condition is false {endif}
where <condition> is like: "variable <operator> value"
with <operator> like: =,!=
or "!varable"