java.lang.Object
org.nuxeo.ecm.platform.ec.notification.email.EmailHelper

public class EmailHelper extends Object
Helper class to build some MailMessages from Maps and send them through the MailService.
 Hashtable mail = new Hashtable();
 mail.put("from", "[email protected]");
 mail.put("to", "[email protected]");
 mail.put("subject", "a subject");
 mail.put("template", "a template name");
 <p>
 EmailHelper.sendMailMessage(mail);