[to_email] rather than list(to_email) which makes a nasty series like ['e','m','a','i','l']
This commit is contained in:
parent
9fa51f07af
commit
3eae207c54
@ -53,7 +53,7 @@ def register(request):
|
|||||||
# TODO: There is no error handling in place
|
# TODO: There is no error handling in place
|
||||||
send_email(
|
send_email(
|
||||||
mgoblin_globals.email_sender_address,
|
mgoblin_globals.email_sender_address,
|
||||||
list(entry['email']),
|
[entry['email']],
|
||||||
# TODO
|
# TODO
|
||||||
# Due to the distributed nature of GNU MediaGoblin, we should
|
# Due to the distributed nature of GNU MediaGoblin, we should
|
||||||
# find a way to send some additional information about the
|
# find a way to send some additional information about the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user