mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 21:28:32 +00:00
cc and bcc should be strings, like recipients
This commit is contained in:
parent
271e6df17f
commit
7371d9f4aa
@ -30,7 +30,7 @@ class EmailService(object):
|
||||
# Create EmailModel
|
||||
email_model = EmailModel(subject=subject, sender=sender, recipients=str(recipients),
|
||||
content=content, content_html=content_html, study=study,
|
||||
cc=cc, bcc=bcc, workflow_spec_id=workflow_spec_id, name=name)
|
||||
cc=str(cc), bcc=str(bcc), workflow_spec_id=workflow_spec_id, name=name)
|
||||
|
||||
# Send mail
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user