Skip to content

Commit

Permalink
fix: update bulk email created event data (#35412)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadadeeltajamul committed Sep 4, 2024
1 parent 4a12de7 commit dd3a7aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lms/djangoapps/bulk_email/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def _send_course_email(entry_id, email_id, to_list, global_email_context, subtas
'edx.bulk_email.created',
{
'course_id': str(course_email.course_id),
'to_list': to_list,
'to_list': [user_obj.get('email', '') for user_obj in to_list],
'total_recipients': total_recipients,
}
)
Expand Down

0 comments on commit dd3a7aa

Please sign in to comment.