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'