com.clickntap.api.Mailer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
package com.clickntap.api;
import java.util.HashMap;
import java.util.Map;
import com.clickntap.smart.SmartContext;
import com.clickntap.tool.mail.Mail;
import com.clickntap.utils.ConstUtils;
public class Mailer extends com.clickntap.tool.mail.Mailer {
public Mail newMail(String key, SmartContext ctx) throws Exception {
Mail mail = newMail(key);
Map mailCtx = new HashMap();
mailCtx.put(ConstUtils.THIS, ctx);
setup(mail, mailCtx);
return mail;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy