mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Update get_email.py
This commit is contained in:
parent
62e73f8a31
commit
266775dbf6
@ -551,7 +551,7 @@ def ticket_from_message(message, queue, logger):
|
|||||||
# copy email to all those CC'd to this particular ticket
|
# copy email to all those CC'd to this particular ticket
|
||||||
for cc in t.ticketcc_set.all():
|
for cc in t.ticketcc_set.all():
|
||||||
# don't duplicate email to assignee
|
# don't duplicate email to assignee
|
||||||
if t.assigned_to.email != cc.email_address:
|
if not t.assigned_to or (t.assigned_to.email != cc.email_address):
|
||||||
send_templated_mail(
|
send_templated_mail(
|
||||||
'updated_cc',
|
'updated_cc',
|
||||||
context,
|
context,
|
||||||
|
Loading…
Reference in New Issue
Block a user