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

com.mastfrog.email.server.HtmlTemplateProvider Maven / Gradle / Ivy

package com.mastfrog.email.server;

import com.google.inject.ImplementedBy;
import freemarker.template.Template;

/**
 *
 * @author Tim Boudreau
 */
@ImplementedBy(DefaultHtmlTemplateProvider.class)
public interface HtmlTemplateProvider {

    public static final String SETTINGS_KEY_EMAIL_TEMPLATE = "email.template.dir";

    public > Template template(T template);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy