diff --git a/app/retail/emails.py b/app/retail/emails.py index e2494c392c1..32bdda55fe4 100644 --- a/app/retail/emails.py +++ b/app/retail/emails.py @@ -608,7 +608,8 @@ def roundup(request): def quarterly_roundup(request): from marketing.utils import get_platform_wide_stats platform_wide_stats = get_platform_wide_stats() - response_html, _ = render_quarterly_stats(settings.CONTACT_EMAIL, platform_wide_stats) + email = settings.CONTACT_EMAIL + response_html, _ = render_quarterly_stats(email, platform_wide_stats) return HttpResponse(response_html)