public interface MailService
| Modifier and Type | Method and Description |
|---|---|
void |
sendMail(Collection<Utilisateur> recipients,
String subject,
String text)
Send an e-mail
|
void |
sendMail(Collection<Utilisateur> recipients,
String subject,
String text,
String replyTo)
Send an e-mail
|
void |
sendMail(Personne recipient,
String subject,
String text)
Send an e-mail
|
void |
sendMailQuietly(Collection<Utilisateur> recipients,
String subject,
String text)
Send an e-mail quietly (without throwing exceptions)
|
void |
sendMailQuietly(Personne recipient,
String subject,
String text)
Send an e-mail quietly (without throwing exceptions)
|
void sendMail(Collection<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<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(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<Utilisateur> recipients, String subject, String text)
recipients - Recipients (not empty, no null object)subject - Subject (not empty)text - Text (not empty)Copyright © 2009–2014 IRD. All rights reserved.