| Author |
Regarding velocity template and also sending the mail using this
|
issak madeena Rahamatullah
Greenhorn
Joined: Jan 24, 2012
Posts: 1
|
|
i am using velocity templates in struts , is there any configurations required in struts, please help me
ArrayList list = new ArrayList();
Map map = new HashMap();
map.put("FromAddress", from);
map.put("ToAddress", to);
map.put("ReportingManager", reportingmanageraddress);
map.put("Subject", subject);
list.add(map);
VelocityContext context = new VelocityContext();
context.put("mail", list);
Template t = ve.getTemplate( "./src/email_html.vm" );
StringWriter writer = new StringWriter();
t.merge( context, writer );
System.out.println( writer.toString() );
then how to send mails by using this template
|
 |
 |
|
|
subject: Regarding velocity template and also sending the mail using this
|
|
|