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

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

There is a newer version: 2.9.7
Show newest version
package com.mastfrog.email.server;

import com.google.inject.ImplementedBy;
import java.util.Map;
import org.apache.commons.mail.Email;

/**
 * Service for sending email
 *
 * @author Tim Boudreau
 */
@ImplementedBy(EmailSendServiceImpl.class)
public interface EmailSendService {
     void send(PublishListener l, String subject, String body, Map injected, EmailAddress from, String... to);
    > void send(T template, PublishListener l, String subject, String body, Map injected, EmailAddress from, String... to);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy