Velocity
Templates usually end with .vm
See the official velocity website for downloads and documentation. The Velocity template language reference guide holds quick syntax information.
Velocity syntax notes - cheat sheet
Code snippets
for each Loop
#foreach($passenger in $booking.passengers)
first name $passenger.firstName
passenger number $velocityCount
#end
Above $velocityCount starts at 1, according to the user guide you can alter this to start at 0 or 1, and you can also alter the variable name.
Published: Thursday, 29 March 2007

