diff --git a/symposion/reviews/views.py b/symposion/reviews/views.py index d2ef40e5be20bb37a565dd7d99d51f3ec30ab15d..a7fa592fe52bc1a5b1c93d729bfd5130a38c7198 100644 --- a/symposion/reviews/views.py +++ b/symposion/reviews/views.py @@ -645,7 +645,11 @@ def result_notification_send(request, section_slug, status): rn.template = notification_template rn.to_address = proposal.speaker_email rn.from_address = request.POST["from_address"] - rn.subject = request.POST["subject"] + rn.subject = Template(request.POST["subject"]).render( + Context({ + "proposal": proposal.notification_email_context() + }) + ) rn.body = Template(request.POST["body"]).render( Context({ "proposal": proposal.notification_email_context()