You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The culprint is here - ",".join("aaa") will result in "a,a,a". We should check to_email is an instance of basestring and enclose it in a list if so, first.
For visual QC, the e-mail string is treated as if it contained a list of recipients, so "[email protected]" gets broken into
[email protected], [email protected], ..., [email protected], [email protected], [email protected], [email protected]
.The text was updated successfully, but these errors were encountered: