public interface MailService
| Modifier and Type | Method and Description |
|---|---|
void |
sendMail(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients,
String subject,
String text)
Send an e-mail
|
void |
sendMail(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients,
String subject,
String text,
String replyTo)
Send an e-mail
|
void |
sendMail(nc.ird.cantharella.data.model.Personne recipient,
String subject,
String text)
Send an e-mail
|
void |
sendMailQuietly(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients,
String subject,
String text)
Send an e-mail quietly (without throwing exceptions)
|
void |
sendMailQuietly(nc.ird.cantharella.data.model.Personne recipient,
String subject,
String text)
Send an e-mail quietly (without throwing exceptions)
|
void sendMail(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients, String subject, String text) throws EmailException
recipients - Recipients (not empty, no null object)subject - Subject (not empty)text - Text (not empty)EmailException - When an e-mail error occursvoid sendMail(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients, String subject, String text, String replyTo) throws EmailException
recipients - Recipients (not empty, no null object)subject - Subject (not empty)text - Text (not empty)replyTo - Reply toEmailException - When an e-mail error occursvoid sendMail(nc.ird.cantharella.data.model.Personne recipient,
String subject,
String text)
throws EmailException
recipient - Recipient (not null)subject - Subject (not empty)text - Text (not empty)EmailException - When an e-mail error occursvoid sendMailQuietly(Collection<nc.ird.cantharella.data.model.Utilisateur> recipients, String subject, String text)
recipients - Recipients (not empty, no null object)subject - Subject (not empty)text - Text (not empty)Copyright © 2012. All Rights Reserved.