From 212b55ccebe8ba6d5df4d1903d5632db3a5608ba Mon Sep 17 00:00:00 2001 From: muhammadadeeltajamul Date: Thu, 19 Sep 2024 16:08:05 +0500 Subject: [PATCH] feat: added sender in bulk_email event --- lms/djangoapps/bulk_email/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/bulk_email/tasks.py b/lms/djangoapps/bulk_email/tasks.py index 2b96af786a97..184dfd0e6869 100644 --- a/lms/djangoapps/bulk_email/tasks.py +++ b/lms/djangoapps/bulk_email/tasks.py @@ -474,6 +474,7 @@ def _send_course_email(entry_id, email_id, to_list, global_email_context, subtas 'course_id': str(course_email.course_id), 'to_list': [user_obj.get('email', '') for user_obj in to_list], 'total_recipients': total_recipients, + 'ace_enabled_for_bulk_email': is_bulk_email_edx_ace_enabled(), } ) # Exclude optouts (if not a retry):