Use Velocity to generate HTML based email : HTML « Velocity « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Velocity » HTMLScreenshots 
Use Velocity to generate HTML based email

import java.io.StringWriter;

import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.VelocityEngine;

public class EmailDemo
{
    public static void mainString[] args )
        throws Exception
    {
        /*
         *   first, get and initialize an engine
         */

        VelocityEngine ve = new VelocityEngine();
        ve.init();

        /*
         *   organize our data 
         */

        ArrayList list = new ArrayList();
        Map map = new HashMap();

        map.put("name""Cow");
        map.put("price""$100.00");
        list.addmap );
 
        map = new HashMap();
        map.put("name""Eagle");
        map.put("price""$59.99");
        list.addmap );

        map = new HashMap();
        map.put("name""Shark");
        map.put("price""$3.99");
        list.addmap );

        /*
         *  add that list to a VelocityContext
         */

        VelocityContext context = new VelocityContext();
        context.put("petList", list);

        /*
         *   get the Template  
         */

        Template t = ve.getTemplate"./src/email_html.vm" );

        /*
         *  now render the template into a Writer, here 
         *  a StringWriter 
         */

        StringWriter writer = new StringWriter();

        t.mergecontext, writer );

        /*
         *  use the output in the body of your emails
         */

        System.out.printlnwriter.toString() );
    }
}

-------------------------------------------------------------------------------------

  <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 = )  
      <TABLE>
        #foreach$pet in $petList )
          <TR>
            <TD>$count)</TD>
            <TD>$pet.name</TD>
            <TD>$pet.price</TD>
          </TR>
          #set$count = $count + )
        #end
      </TABLE>
      
     <I>Call Today!</I>
     Bests <br>
     www.java2s.com
      </CENTER>
 
    </BODY>
  </HTML>

           
       
velocity-HTML-Based-Email.zip( 2,191 k)
Related examples in the same category
1.Velocity works With HTML
2.Use Velocity to generate HTML document
3.Velocity Generate Document: anakia task
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.