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

rs.mail.queue.MailSender Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/**
 * 
 */
package rs.mail.queue;

/**
 * A helper interface that actually will send e-mails.
 * 
 * @param  the type of email object this sender handles.
 * 
 * @author ralph
 *
 */
public interface MailSender {

	/**
	 * Sends the message object.
	 * @param message - the message object
	 * @param referenceId - a reference ID for the message
	 * @throws Exception - when sending fails
	 */
	public void sendMessage(T message, String referenceId) throws Exception;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy