diff --git a/frappe/email/doctype/email_queue/email_queue.py b/frappe/email/doctype/email_queue/email_queue.py index 7823491562..ac80796bab 100644 --- a/frappe/email/doctype/email_queue/email_queue.py +++ b/frappe/email/doctype/email_queue/email_queue.py @@ -691,8 +691,8 @@ class QueueBuilder: def prepare_email_content(self): email_account = self.get_outgoing_email_account() - if isinstance(self._bcc, list) and email_account.always_bcc is not None: - self._bcc.append(str(email_account.always_bcc)) + if isinstance(self._bcc, list) and email_account.always_bcc: + self._bcc.append(email_account.always_bcc) mail = get_email( recipients=self.final_recipients(), sender=self.sender,