# HG changeset patch # User Puneeth Chaganti # Date 1287414001 -19800 # Node ID ccd1a896dfea0239b9462195bc72ca89d8657cf3 # Parent 1e3f7e6a14bad846ac03e40f0124f74efeeb39d2 Fixed the bug with sending the mail content post registration. diff -r 1e3f7e6a14ba -r ccd1a896dfea project/scipycon/registration/utils.py --- a/project/scipycon/registration/utils.py Mon Oct 18 14:15:41 2010 +0530 +++ b/project/scipycon/registration/utils.py Mon Oct 18 20:30:01 2010 +0530 @@ -8,26 +8,31 @@ message.from_email = u'admin@scipy.in' message.to = [registrant.email] - username = registrant.username - all = {'name': registrant.get_full_name(), - 'username': username, - 'event_name': event.get_full_name(), - 'event_scope': event.scope, - } + details = {'name': registrant.get_full_name(), + 'username': registrant.username, + 'password': registrant.password, + 'event_name': event.get_full_name(), + 'event_scope': event.scope, + } + + confirmation_newuser = """Dear %(name)s, + +Thank you, for registering for %(event_name)s! + +You may log in to the %(event_name)s website at +http://scipy.in/%(event_scope)s/login using the username - +%(username)s and the password - %(password)s. + +Looking forward to meet you at %(event_name)s. + +Regards, +SciPy.in Team + +If you lose your password, visit: http://scipy.in/password-reset +""" + + message.body = confirmation_newuser %(details) message.send() -confirmation_newuser = """Dear %(name)s, -Welcome to %(event_name)s. You have registered for %(event_name)s with the -username %(username)s. You may log in to the %(event_name)s website at -http://scipy.in/%(event_scope)s/login using the given username - -Thank you for your registration! Looking forward to meet you at %(event_name)s. - -Regards, -The SciPy.in Team - -If you lose your password to the website please visit: -http://scipy.in/password-reset -"""