Using an If statement in an email template

According to the Apache Velocity Template specification, you shouldn’t need the curly braces when using variables in your if/else. I was able to successfully apply an if statement in the subject line, which you can find in this topic.

Maybe try this:

The value of "user.band" is ${user.band}

#if( $user.band == '700')Success#{else}Fail#end