mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
Making the feedback tickets subject unique to avoid threading in gmail
Lots of tickets get rolled into a single thread and can mean we miss some tickets. This will ensure a different thread for each one.
This commit is contained in:
@@ -96,7 +96,7 @@ def feedback(ticket_type):
|
|||||||
'person_name': user_name,
|
'person_name': user_name,
|
||||||
'department_id': current_app.config.get('DESKPRO_DEPT_ID'),
|
'department_id': current_app.config.get('DESKPRO_DEPT_ID'),
|
||||||
'agent_team_id': current_app.config.get('DESKPRO_ASSIGNED_AGENT_TEAM_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,
|
'message': feedback_msg,
|
||||||
'label': ticket_type,
|
'label': ticket_type,
|
||||||
'urgency': 10 if urgent else 1,
|
'urgency': 10 if urgent else 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user