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