Ignore:
Timestamp:
20 Dec 2011, 11:05:07 (13 years ago)
Author:
Henrik Bettermann
Message:

Harmonize sendCredentials which can now be used for all kinds of users.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py

    r7404 r7407  
    22342234        IUserAccount(student).setPassword(pwd)
    22352235        # Send email with new redentials
    2236         username = student.student_id
    2237         fullname = student.display_fullname
    2238         subject = 'Your SIRP credentials'
    22392236        msg = 'You have successfully changed your password for the'
    2240         email_to = student.email
    22412237        login_url = self.url(grok.getSite(), 'login')
    2242         success = sirp_utils.sendPassword(fullname,msg,username,
    2243             pwd,login_url,email_to,subject)
     2238        success = sirp_utils.sendCredentials(
     2239            IUserAccount(student),pwd,login_url,msg)
    22442240        if success:
    22452241            self.flash('An email with your user name and password ' +
    2246                 'has been sent to %s.' % email_to)
     2242                'has been sent to %s.' % email)
    22472243        else:
    22482244            self.flash('An smtp server error occurred.')
Note: See TracChangeset for help on using the changeset viewer.