From 0dda85d7f7a9146b232805930856d8507be55ec4 Mon Sep 17 00:00:00 2001 From: Felipe Montoya Date: Thu, 15 Sep 2016 11:58:24 -0500 Subject: [PATCH] Fixing the call to the same value used in all other calls in the codebase --- lms/djangoapps/verify_student/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/verify_student/views.py b/lms/djangoapps/verify_student/views.py index 4959f3dcf6..f849f4bee7 100644 --- a/lms/djangoapps/verify_student/views.py +++ b/lms/djangoapps/verify_student/views.py @@ -1105,7 +1105,7 @@ class SubmitPhotosView(View): subject = _("Verification photos received") message = render_to_string('emails/photo_submission_confirmation.txt', context) - from_address = configuration_helpers.get_value('default_from_email', settings.DEFAULT_FROM_EMAIL) + from_address = configuration_helpers.get_value('email_from_address', settings.DEFAULT_FROM_EMAIL) to_address = user.email try: