Skip to content

Commit 3b30eb7

Browse files
authored
Fixed recipient list format
1 parent 66049bb commit 3b30eb7

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/scripts/send_report.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,15 @@ def create_email_body(repo_name, stats):
5252
# except Exception as e:
5353
# print(f"Error sending email: {e}")
5454

55-
def send_email(recipient_emails, subject, body):
55+
def send_email(recipient_emails_str, subject, body):
5656
"""Send email using SendGrid to multiple recipients"""
5757
sg = SendGridAPIClient(os.environ['SENDGRID_API_KEY'])
5858

5959
from_email = Email(os.environ['SENDER_EMAIL'])
6060

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(',')]
6463

65-
# Create personalization object with multiple recipients
6664
mail = Mail(
6765
from_email=from_email,
6866
subject=subject,

0 commit comments

Comments
 (0)