Skip to content

Commit 712f44b

Browse files
committed
bcc recipient to emailsvc
1 parent f3d63e8 commit 712f44b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pybossa/emailsvc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def send(self, message):
4747
self.request_type: {
4848
"recipients": message["recipients"],
4949
"subject": message["subject"],
50-
"body": message["body"]
50+
"body": message["body"],
51+
"bcc": message.get("bcc", [])
5152
}
5253
}
5354
response = requests.post(self.url, headers=self.headers, json=payload, verify=self.ssl_cert)

0 commit comments

Comments
 (0)