@params

Copies parameters into the current context, making them available within the template. This tag is useful to set variables that you can manipulate within your templates.

Parameters

You can pass any parameters you'd like.

Response

The incoming parameters will become variables within your template.

Examples

Example #1: Michael Jackson

{@params firstName="Michael" lastName="Jackson"}
   Your name is {firstName} {lastName}
{/params}