Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/user_authn/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def check_pwned_password_and_send_track_event(user_id, password, internal_user=F

@shared_task(bind=True, default_retry_delay=30, max_retries=2)
@set_code_owner_attribute
def send_activation_email(self, msg_string, from_address=None):
def send_activation_email(self, msg_string, from_address=None, site_id=None):
"""
Sending an activation email to the user.
"""
Expand All @@ -62,7 +62,7 @@ def send_activation_email(self, msg_string, from_address=None):

dest_addr = msg.recipient.email_address

site = Site.objects.get_current()
site = Site.objects.get(id=site_id) if site_id else Site.objects.get_current()
user = User.objects.get(id=msg.recipient.lms_user_id)

try:
Expand Down