All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.api.Mailer Maven / Gradle / Ivy

The newest version!
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