blob: 4e4c5351a35e5baa13db84fff02e807fbd686015 [file] [log] [blame]
package org.apache.turbine.util.velocity;
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
* "Apache Turbine" must not be used to endorse or promote products
* derived from this software without prior written permission. For
* written permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* "Apache Turbine", nor may "Apache" appear in their name, without
* prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
import java.net.URL;
import java.util.Hashtable;
import javax.mail.MessagingException;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.mail.HtmlEmail;
import org.apache.turbine.Turbine;
import org.apache.turbine.TurbineConstants;
import org.apache.turbine.pipeline.PipelineData;
import org.apache.turbine.services.velocity.TurbineVelocity;
import org.apache.turbine.util.RunData;
import org.apache.velocity.context.Context;
/**
* This is a simple class for sending html email from within Velocity.
* Essentially, the bodies (text and html) of the email are a Velocity
* Context objects. The beauty of this is that you can send email
* from within your Velocity template or from your business logic in
* your Java code. The body of the email is just a Velocity template
* so you can use all the template functionality of Velocity within
* your emails!
*
* <p>This class allows you to send HTML email with embedded content
* and/or with attachments. You can access the VelocityHtmlEmail
* instance within your templates trough the <code>$mail</code>
* Velocity variable.
* <p><code>VelocityHtmlEmail myEmail= new VelocityHtmlEmail(data);<br>
* context.put("mail", myMail);</code>
* <b>or</b>
* <code>VelocityHtmlEmail myEmail= new VelocityHtmlEmail(context);<br>
* context.put("mail", myMail);</code>
*
*
* <p>The templates should be located under your Template turbine
* directory.
*
* <p>This class wraps the HtmlEmail class from commons-email. Thus, it uses
* the JavaMail API and also depends on having the mail.server property
* set in the TurbineResources.properties file. If you want to use
* this class outside of Turbine for general processing that is also
* possible by making sure to set the path to the
* TurbineResources.properties. See the
* TurbineResourceService.setPropertiesFileName() method for more
* information.
*
* <p>This class is basically a conversion of the WebMacroHtmlEmail
* written by Regis Koenig
*
* <p>You can turn on debugging for the JavaMail API by calling
* setDebug(true). The debugging messages will be written to System.out.
*
* @author <a href="mailto:epugh@upstate.com">Eric Pugh</a>
* @author <a href="mailto:A.Schild@aarboard.ch">Andre Schild</a>
* @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
* @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
* @author <a href="mailto:peter@courcoux.biz">Peter Courcoux</a>
* @version $Id$
*/
public class VelocityHtmlEmail extends HtmlEmail
{
/** Logging */
private static Log log = LogFactory.getLog(VelocityHtmlEmail.class);
/**
* The html template to process, relative to VM's template
* directory.
*/
private String htmlTemplate = null;
/**
* The text template to process, relative to VM's template
* directory.
*/
private String textTemplate = null;
/** The cached context object. */
private Context context = null;
/** The map of embedded files. */
private Hashtable embmap = null;
/** Address of outgoing mail server */
private String mailServer;
/**
* Constructor, sets the context object from the passed RunData object
* @deprecated use PipelineData version instead
* @param data A Turbine RunData object.
*/
public VelocityHtmlEmail(RunData data)
{
this.context = TurbineVelocity.getContext(data);
embmap = new Hashtable();
}
/**
* Constructor, sets the context object from the passed RunData object
*
* @param data A Turbine RunData object.
*/
public VelocityHtmlEmail(PipelineData pipelineData)
{
this.context = TurbineVelocity.getContext(pipelineData);
embmap = new Hashtable();
}
/**
* Constructor, sets the context object.
*
* @param context A Velocity context object.
*/
public VelocityHtmlEmail(Context context)
{
this.context = context;
embmap = new Hashtable();
}
/**
* Set the HTML template for the mail. This is the Velocity
* template to execute for the HTML part. Path is relative to the
* VM templates directory.
*
* @param template A String.
* @return A VelocityHtmlEmail (self).
*/
public VelocityHtmlEmail setHtmlTemplate(String template)
{
this.htmlTemplate = template;
return this;
}
/**
* Set the text template for the mail. This is the Velocity
* template to execute for the text part. Path is relative to the
* VM templates directory
*
* @param template A String.
* @return A VelocityHtmlEmail (self).
*/
public VelocityHtmlEmail setTextTemplate(String template)
{
this.textTemplate = template;
return this;
}
/**
* Sets the address of the outgoing mail server. This method
* should be used when you need to override the value stored in
* TR.props.
*
* @param serverAddress host name of your outgoing mail server
*/
public void setMailServer(String serverAddress)
{
this.mailServer = serverAddress;
}
/**
* Gets the host name of the outgoing mail server. If the server
* name has not been set by calling setMailServer(), the value
* from TR.props for mail.server will be returned. If TR.props
* has no value for mail.server, localhost will be returned.
*
* @return host name of the mail server.
*/
public String getMailServer()
{
return StringUtils.isNotEmpty(mailServer) ? mailServer
: Turbine.getConfiguration().getString(
TurbineConstants.MAIL_SERVER_KEY,
TurbineConstants.MAIL_SERVER_DEFAULT);
}
/**
* Actually send the mail.
*
* @exception MessagingException thrown if mail cannot be sent.
*/
public void send() throws MessagingException
{
context.put("mail", this);
try
{
if (htmlTemplate != null)
{
setHtmlMsg(
TurbineVelocity.handleRequest(context, htmlTemplate));
}
if (textTemplate != null)
{
setTextMsg(
TurbineVelocity.handleRequest(context, textTemplate));
}
}
catch (Exception e)
{
throw new MessagingException("Cannot parse velocity template", e);
}
setHostName(getMailServer());
super.send();
}
/**
* Embed a file in the mail. The file can be referenced through
* its Content-ID. This function also registers the CID in an
* internal map, so the embedded file can be referenced more than
* once by using the getCid() function. This may be useful in a
* template.
*
* <p>Example of template:
*
* <code><pre width="80">
* &lt;html&gt;
* &lt;!-- $mail.embed("http://server/border.gif","border.gif"); --&gt;
* &lt;img src=$mail.getCid("border.gif")&gt;
* &lt;p&gt;This is your content
* &lt;img src=$mail.getCid("border.gif")&gt;
* &lt;/html&gt;
* </pre></code>
*
* @param surl A String.
* @param name A String.
* @return A String with the cid of the embedded file.
* @exception VelocityEmailException
* @see HtmlEmail#embed(URL surl, String name) embed.
*/
public String embed(String surl, String name) throws VelocityEmailException
{
String cid = "";
try
{
URL url = new URL(surl);
cid = embed(url, name);
}
catch (Exception e)
{
log.error("cannot embed " + surl + ": ", e);
}
return cid;
}
/**
* Get the cid of an embedded file.
*
* @param filename A String.
* @return A String with the cid of the embedded file.
* @see #embed(String surl, String name) embed.
*/
public String getCid(String filename)
{
String cid = (String) embmap.get(filename);
return "cid:" + cid;
}
}