From 3618a84e06e450c1e981685d5a063b0809a73a03 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 19 Oct 2018 14:57:24 +0200 Subject: [PATCH] Send waitlist emails to the attendees, not the conference Definitely backwards to send all the emails back to the organizer instead of the attendees.... --- postgresqleu/confreg/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresqleu/confreg/views.py b/postgresqleu/confreg/views.py index fc17899..3387b10 100644 --- a/postgresqleu/confreg/views.py +++ b/postgresqleu/confreg/views.py @@ -2843,7 +2843,7 @@ def admin_waitlist_sendmail(request, urlname): msgbody += "\n\nThe current size of the waitlist is {0}.\n".format(tot) send_simple_mail(conference.contactaddr, - conference.contactaddr, + w.registration.email, u"[{0}] {1}".format(conference.conferencename, form.cleaned_data['subject']), msgbody, sendername=conference.conferencename, -- 2.39.5