This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects

Merge Master Bugfix back to Development

Merged Michael Breu requested to merge master into development
Viewing commit 1ac9a9ed
Show latest version
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -124,7 +124,7 @@ public class MailService {
javaMailSender.send(mimeMessage);
log.debug("Sent email to User '{}'", to);
return true;
} catch (MailException | MessagingException e) {
} catch (Exception e) {
log.warn("Email could not be sent to user '{}'", to, e);
return false;
}