mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-10 22:06:52 +00:00
fix(email campaign): send emails using bcc
(cherry picked from commit 7e8d19b0c8)
This commit is contained in:
@@ -123,7 +123,7 @@ def send_mail(entry, email_campaign):
|
|||||||
subject=frappe.render_template(email_template.get("subject"), context),
|
subject=frappe.render_template(email_template.get("subject"), context),
|
||||||
content=frappe.render_template(email_template.response_, context),
|
content=frappe.render_template(email_template.response_, context),
|
||||||
sender=sender,
|
sender=sender,
|
||||||
recipients=recipient_list,
|
bcc=recipient_list,
|
||||||
communication_medium="Email",
|
communication_medium="Email",
|
||||||
sent_or_received="Sent",
|
sent_or_received="Sent",
|
||||||
send_email=True,
|
send_email=True,
|
||||||
|
|||||||
Reference in New Issue
Block a user