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

com.fivefaces.cloud.email.EmailService Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fivefaces.cloud.email;

import javax.mail.MessagingException;

public interface EmailService {

    void sendEmail(final String fromAddress, final String toAddress, final String subject, final String htmlBody, final String plainBody) throws MessagingException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy