From 6a238b00483a5472c4625ee895982d6ce05a0ea8 Mon Sep 17 00:00:00 2001 From: Achilles Rasquinha Date: Fri, 19 Jan 2018 12:15:07 +0530 Subject: [PATCH] Send me a Copy not in BCC (#4874) --- frappe/core/doctype/communication/email.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/core/doctype/communication/email.py b/frappe/core/doctype/communication/email.py index f37e351428..bac3c4ed35 100755 --- a/frappe/core/doctype/communication/email.py +++ b/frappe/core/doctype/communication/email.py @@ -374,9 +374,6 @@ def get_bcc(doc, recipients=None, fetched_from_email_account=False): bcc.append(get_owner_email(doc)) bcc += get_assignees(doc) - if getattr(doc, "send_me_a_copy", False) and doc.sender not in bcc: - bcc.append(doc.sender) - if bcc: exclude = [] exclude += [d[0] for d in frappe.db.get_all("User", ["name"], {"thread_notify": 0}, as_list=True)]