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

com.quincy.sdk.EmailService Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.quincy.sdk;

import java.io.File;

public interface EmailService {
	public void send(String to, String subject, String content, String attachment, String fileName, String charset, String ccTo, String bccTo);
	public void send(String to, String subject, String content, File attachment, String fileName, String charset, String ccTo, String bccTo) ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy