Compare commits
2 commits
39555d41f9
...
845af9c367
Author | SHA1 | Date | |
---|---|---|---|
|
845af9c367 | ||
|
c93b3508ed |
1 changed files with 1 additions and 2 deletions
|
@ -330,9 +330,8 @@ class EmailClient(
|
|||
", ".join(cc) if isinstance(cc, list) else cc,
|
||||
", ".join(bcc) if isinstance(cc, list) else bcc,
|
||||
catch_addr,
|
||||
cc,
|
||||
)
|
||||
recipients = catch_addr if isinstance(catch_addr, list) else list(catch_addr)
|
||||
recipients = catch_addr if isinstance(catch_addr, list) else [catch_addr]
|
||||
else:
|
||||
if cc:
|
||||
recipients.extend(
|
||||
|
|
Loading…
Reference in a new issue