Transport.send(message);
log.debug("Activation mail sent successfully to {}", user.getEmail());
} catch (Exception e) {
log.error("Error at sending activation mail to {}", user.getEmail());
throw new CannotSendMailException("Error at sending activation mail to " + user.getEmail(), e);
}
}