use of pl.pollub.cs.pentagoncafe.flare.exception.sendingEmail.SendingActivationEmailFailException in project Flare-event-calendar by PollubCafe.
the class RegistrationServiceImpl method sendActivationEmail.
private void sendActivationEmail(Email email) {
try {
checkArgument(email instanceof HtmlEmail);
emailSender.send((HtmlEmail) email);
} catch (MessagingException e) {
e.printStackTrace();
throw new SendingActivationEmailFailException();
}
}
Aggregations