-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event creation notification implementation #6380
Event creation notification implementation #6380
Conversation
public void sendEmailNotification(Event event, User user) { | ||
String message = "Dear, " + user.getFirstName() + "!" | ||
+ "\nYou have successfully created an event: " + event.getTitle(); | ||
SendEventCreationNotification notification = SendEventCreationNotification.builder() | ||
.email(user.getEmail()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void sendEmailNotification(Event event, User user) { | |
String message = "Dear, " + user.getFirstName() + "!" | |
+ "\nYou have successfully created an event: " + event.getTitle(); | |
SendEventCreationNotification notification = SendEventCreationNotification.builder() | |
.email(user.getEmail()) | |
public void sendEmailNotification(String eventTitle, String userName, String email) { | |
String message = "Dear, " + userName + "!" | |
+ "\nYou have successfully created an event: " + eventTitle; | |
SendEventCreationNotification notification = SendEventCreationNotification.builder() | |
.email(email) |
Kudos, SonarCloud Quality Gate passed! 0 Bugs 100.0% Coverage The version of Java (11.0.20) you have used to run this analysis is deprecated and we will stop accepting it soon. Please update to at least Java 17. |
GreenCity PR
Issue link 📋
[Add event] User is not received a notification on email upon status of event creation #5874
Notification via email about status of event creation has not been implemented.
Summary Of Changes 🔥