From 761bc5d159fead3e411e9c40c5e8f456c8efdf8d Mon Sep 17 00:00:00 2001 From: Muhammad Adeel Tajamul <77053848+muhammadadeeltajamul@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:34:47 +0500 Subject: [PATCH] feat: set bulk email transactional to True (#35579) --- lms/djangoapps/bulk_email/message_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/bulk_email/message_types.py b/lms/djangoapps/bulk_email/message_types.py index 033f5423e1f7..53c7e92029a5 100644 --- a/lms/djangoapps/bulk_email/message_types.py +++ b/lms/djangoapps/bulk_email/message_types.py @@ -12,3 +12,4 @@ class BulkEmail(BaseMessageType): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.options['from_address'] = kwargs['context']['from_address'] + self.options['transactional'] = True