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

org.openfact.email.EmailTemplateProvider Maven / Gradle / Ivy

The newest version!
package org.openfact.email;

import org.openfact.models.DocumentModel;

import java.util.Map;

public interface EmailTemplateProvider {

    void sendDocument(EmailTemplateConfiguration config, DocumentModel invoice) throws EmailException;

    void send(EmailTemplateConfiguration config, String subjectKey, String template, Map attributes) throws EmailException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy