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

br.com.jhonsapp.email.dispatcher.EmailDispatcher Maven / Gradle / Ivy

Go to download

Email Dispatcher is an open source project created by Jhonys Camacho and Jhonathan Camacho to facilitate the sending of emails.

There is a newer version: 1.0.3
Show newest version
package br.com.jhonsapp.email.dispatcher;

import java.io.Serializable;

/**
 * Interface responsible for dispatcher the emails.
 * 
 * @author Jhonathan Camacho
 *
 */
public interface EmailDispatcher extends Serializable {

	/**
	 * Send email to a specific destination.
	 * 
	 * @param message
	 *            message to be send.
	 * 
	 * @return true if the sending operation was successful and otherwise false.
	 */
	public boolean send(Message message);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy