File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -52,17 +52,15 @@ def create_email_body(repo_name, stats):
52
52
# except Exception as e:
53
53
# print(f"Error sending email: {e}")
54
54
55
- def send_email (recipient_emails , subject , body ):
55
+ def send_email (recipient_emails_str , subject , body ):
56
56
"""Send email using SendGrid to multiple recipients"""
57
57
sg = SendGridAPIClient (os .environ ['SENDGRID_API_KEY' ])
58
58
59
59
from_email = Email (os .environ ['SENDER_EMAIL' ])
60
60
61
- # Convert string to list if a single string is provided
62
- if isinstance (recipient_emails , str ):
63
- recipient_emails = [recipient_emails ]
61
+ # Split comma-separated string into list and strip whitespace
62
+ recipient_emails = [email .strip () for email in recipient_emails_str .split (',' )]
64
63
65
- # Create personalization object with multiple recipients
66
64
mail = Mail (
67
65
from_email = from_email ,
68
66
subject = subject ,
You can’t perform that action at this time.
0 commit comments