From b36ccdb9ca030c0a26d27e5dffdbeb487eb9e465 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Mon, 12 Apr 2021 08:25:19 -0600 Subject: [PATCH] Typo --- download/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download/views.py b/download/views.py index 115ae22..95c3635 100644 --- a/download/views.py +++ b/download/views.py @@ -59,7 +59,7 @@ def send_email(to, addr, pdf, dt_date): # send email email = EmailMultiAlternatives() # TODO: redefining template - email.subject = "You quote for " + addr.address + " is attached" + email.subject = "Your quote for " + addr.address + " is attached" email.to = [to] context = { 'address': addr.address,