Currently, changing the email address in LMS does not reflect in Braze and the transaction emails sent through Braze are delivering to user's old/previous email address. Added a signal/receiver to sync the new email address upon confirm email change.
10 lines
232 B
Python
10 lines
232 B
Python
# lint-amnesty, pylint: disable=missing-module-docstring
|
|
|
|
from common.djangoapps.student.signals.signals import (
|
|
ENROLL_STATUS_CHANGE,
|
|
ENROLLMENT_TRACK_UPDATED,
|
|
REFUND_ORDER,
|
|
UNENROLL_DONE,
|
|
USER_EMAIL_CHANGED
|
|
)
|