From 59b2a04d175830febba4fb605788c38fdccb2c51 Mon Sep 17 00:00:00 2001 From: Hardeep Date: Tue, 1 Mar 2022 16:49:55 +0530 Subject: [PATCH] =?UTF-8?q?unexpected=20keyword=20argument=20=E2=80=98bulk?= =?UTF-8?q?=E2=80=99=20rectified?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TypeError: sendmail() got an unexpected keyword argument ‘bulk’ Above error removed, as per https://discuss.erpnext.com/t/meeting-app-unexpected-keyword-argument-bulk/86714 --- meeting/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meeting/api.py b/meeting/api.py index 6bca9c8..b19b9d4 100644 --- a/meeting/api.py +++ b/meeting/api.py @@ -14,8 +14,7 @@ def send_invitation_emails(meeting): subject=meeting.title, message=meeting.invitation_message, reference_doctype=meeting.doctype, - reference_name=meeting.name, - as_bulk=True + reference_name=meeting.name ) meeting.status = "Invitation Sent"