From fc81b49d44cb7724a09acff8dd6182a72a09df5e Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 4 Aug 2015 12:50:11 +0200 Subject: [PATCH] fix typo (additional email adresses) in send mail action --- organize/browser/party.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/organize/browser/party.py b/organize/browser/party.py index 3f9a78b..afcf656 100644 --- a/organize/browser/party.py +++ b/organize/browser/party.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2011 Helmut Merz helmutm@cy55.de +# Copyright (c) 2015 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -194,7 +194,7 @@ class SendEmail(FormController): subject = form.get('subject') or u'' message = form.get('mailbody') or u'' recipients = form.get('recipients') or [] - recipients += (form.get('addrRecipients') or u'').split('\n') + recipients += (form.get('addrecipients') or u'').split('\n') # TODO: remove duplicates person = getPersonForUser(self.context, self.request) sender = person and adapted(person).email or 'loops@unknown.com'