diff --git a/app/main/views/feedback.py b/app/main/views/feedback.py index 8bd6a7bb1..e99d6e1ba 100644 --- a/app/main/views/feedback.py +++ b/app/main/views/feedback.py @@ -96,7 +96,7 @@ def feedback(ticket_type): 'person_name': user_name, 'department_id': current_app.config.get('DESKPRO_DEPT_ID'), 'agent_team_id': current_app.config.get('DESKPRO_ASSIGNED_AGENT_TEAM_ID'), - 'subject': 'Notify feedback', + 'subject': 'Notify feedback {}'.format(user_name), 'message': feedback_msg, 'label': ticket_type, 'urgency': 10 if urgent else 1,