15 lines
305 B
Java
15 lines
305 B
Java
package fr.organizee.service;
|
|
|
|
import fr.organizee.model.Mail;
|
|
|
|
import javax.mail.MessagingException;
|
|
|
|
public interface SendMailService {
|
|
void sendMail(Mail mail);
|
|
|
|
void sendMailHTML(Mail mail) throws MessagingException;
|
|
|
|
void sendMailWithAttachments(Mail mail) throws MessagingException;
|
|
}
|
|
|
|
|