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

com.skynet.infrastructure.SMTPService Maven / Gradle / Ivy

package com.skynet.infrastructure;

import java.util.List;

import com.terapico.caf.BlobObject;

public interface SMTPService {

	public void send(String to, String subject, String content) throws Exception;
	public void sendWithAttachment(String to, String subject, String content, List attachments) throws Exception;
	public void sendHtml(String to, String subject, String content);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy