Skip to content

Instantly share code, notes, and snippets.

@larsgroeber
Last active April 6, 2020 17:38
Show Gist options
  • Save larsgroeber/e440432067d261c5269ee8e9dcff30be to your computer and use it in GitHub Desktop.
Save larsgroeber/e440432067d261c5269ee8e9dcff30be to your computer and use it in GitHub Desktop.
@PreAuthorize("@authorizationService.hasPermission('SEND_MAIL', authentication)")
@Override
public void sendMail(SendMailRequest request) {
MimeMessage message = makeMessage(request);
addEmailLog(request);
sendMessage(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment