mailer.setFrom(((User) sender).getEmail());
}
mailer.setSubject(translatedMessage.getSubject());
mailer.setBody(translatedMessage.getBody(), "text/plain; charset=UTF-8");
mailer.send();
} catch (AddressException e) {
getLogger().error("Sending mail failed (address error): ", e);
throw new NotificationException(e);
} catch (MessagingException e) {