[appengine-java] Re: email templating

2010-07-22 Thread Nacho Coloma
Have you tried MVEL? On Jul 22, 9:41 am, Matt Farnell mfarn...@gmail.com wrote: Does anyone have any recommendations for an emailing template solution? Ideally I'd like to be able to define my HTML emails like JSP and then just substitute in the values. I've come across Velocity and

[appengine-java] Re: email templating

2010-07-22 Thread TL
For very simple templates you can use java.text.MessageFormat. It lacks the ability to do real template work, conditions, loops, HTML escaping etc, but for simple substitutions, numbers, dates, etc it works. There may be a comparable and better implementation in one of the apache utility packages