needed to access email_sender_address through mg_globals.app_config

instead of mg_globals.email_sender_address.
This commit is contained in:
Caleb Forbes Davis V 2011-08-28 21:41:42 -05:00
parent 6503073508
commit f85909c061

View File

@ -146,7 +146,7 @@ def send_fp_verification_email(user,request):
# TODO: There is no error handling in place
send_email(
mg_globals.email_sender_address,
mg_globals.app_config['email_sender_address'],
[user['email']],
'GNU MediaGoblin - Change forgotten password!',
rendered_email)