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

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

The newest version!
package com.mastfrog.email.server;

import com.google.inject.ImplementedBy;
import java.util.Map;

/**
 * Formats messages as HTML
 *
 * @author Tim Boudreau
 */
@ImplementedBy(DefaultHtmlMessageFormatter.class)
public interface HtmlMessageFormatter {

    String format(EmailAddress sender, String subject, String body, Map injected);
    > String format(T template, EmailAddress sender, String subject, String body, Map injected);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy