diff --git a/Server/Services/EventRegistrationService.cs b/Server/Services/EventRegistrationService.cs index df4f243..2a6f537 100644 --- a/Server/Services/EventRegistrationService.cs +++ b/Server/Services/EventRegistrationService.cs @@ -81,8 +81,8 @@ namespace SZUAbsolventenverein.Module.EventRegistration.Services Response = _ResponseRepository.UpdateResponse(Response); Event currentEvent = _EventRepository.GetEvent(Response.EventRegistrationId); - string subject = Response.ResponseType ? $"Du bist erfolgreich für '{currentEvent.Name}' Registriert worden." : $"Du hast erfolgreich für '{currentEvent.Name}' abgesagt."; - string body = "Hier kann man die Infos des Events hineinpacken (HTML ist erlaubt)"; + string subject = Response.ResponseType ? $"Du bist erfolgreich für '{currentEvent.Name}' registriert." : $"Du hast erfolgreich für '{currentEvent.Name}' abgesagt."; + string body = currentEvent.Description; SendEventResponseNotification(subject, body); _logger.Log(LogLevel.Information, this, LogFunction.Create, "EventRegistration Added {NewEvent}", Response);