aslsocial/src/main/java/org/gcube/applicationsupportlayer/social/mailing/email_html.vm

35 lines
630 B
Plaintext

<HTML>
<HEAD>
<TITLE>Pet Store Sale!</TITLE>
</HEAD>
<BODY>
<CENTER>
<B>$petList.size() Pets on Sale!</B>
<BR/>
This is an email generated by velocity
<BR/>
This month only, choose from :
#set( $count = 1 )
<TABLE>
#foreach( $pet in $petList )
<TR>
<TD>$count)</TD>
<TD>$pet.name</TD>
<TD>$pet.price</TD>
</TR>
#set( $count = $count + 1 )
#end
</TABLE>
<I>Call Today!</I>
Bests <br>
www.java2s.com
</CENTER>
</BODY>
</HTML>