diff --git a/lms/djangoapps/instructor/views/instructor_dashboard.py b/lms/djangoapps/instructor/views/instructor_dashboard.py index 7d07520a5e..fdb241f5c1 100644 --- a/lms/djangoapps/instructor/views/instructor_dashboard.py +++ b/lms/djangoapps/instructor/views/instructor_dashboard.py @@ -637,7 +637,7 @@ def _section_send_email(course, access): course_modes = [] from verified_track_content.models import VerifiedTrackCohortedCourse if not VerifiedTrackCohortedCourse.is_verified_track_cohort_enabled(course_key): - course_modes = CourseMode.modes_for_course(course_key) + course_modes = CourseMode.modes_for_course(course_key, include_expired=True, only_selectable=False) email_editor = fragment.content section_data = { 'section_key': 'send_email',