Skip to content

Commit

Permalink
Merge branch 'master' into feature/show-unsubscribe-link
Browse files Browse the repository at this point in the history
  • Loading branch information
tynsh authored Nov 25, 2019
2 parents a4d01dd + bbd2588 commit 3f37054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion muesli/web/viewsLecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def emailTutors(request):
message = Message(subject=form['subject'],
sender=request.user.email,
to= [assistant.email for assistant in lecture.assistants],
bcc=[t.email for t in tutors],
cc=[t.email for t in tutors],
body=form['body'])
if request.POST['attachments'] not in ['', None]:
message.attach(request.POST['attachments'].filename, data=request.POST['attachments'].file)
Expand Down

0 comments on commit 3f37054

Please sign in to comment.