From: Tony Mack Date: Mon, 6 Oct 2008 18:12:29 +0000 (+0000) Subject: fix typo. When sending email notification, use values from plc_config instead of... X-Git-Tag: PLCAPI-4.3-2~24 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c1aaaec750423d6e35b91ff3eb52d267099785be;p=plcapi.git fix typo. When sending email notification, use values from plc_config instead of hardcoded ones --- diff --git a/PLC/Methods/UpdatePerson.py b/PLC/Methods/UpdatePerson.py index 61b8e26..2043604 100644 --- a/PLC/Methods/UpdatePerson.py +++ b/PLC/Methods/UpdatePerson.py @@ -68,11 +68,11 @@ class UpdatePerson(Method): To = [("%s %s" % (person['first_name'], person['last_name']), person['email'])] Cc = [] if person['enabled']: - Subject = "PlanetLab account enabled" - Body = "Your PlanetLab account has been enabled. You should now be allowd to access you account" + Subject = "%s account enabled" % (self.api.config.PLC_NAME) + Body = "Your %s account has been enabled. Please visit %s to access your account." % (self.api.config.PLC_NAME, self.api.config.PLC_WWW_HOST) else: - Subject = "PlanetLab account disabled" - Body = "Your PlanetLab account has been disabled. Please contact your PI or PlanetLab support for more information" + Subject = "%s account disabled" % (self.api.config.PLC_NAME) + Body = "Your %s account has been disabled. Please contact your PI or PlanetLab support for more information" % (self.api.config.PLC_NAME) sendmail(self.api, To = To, Cc = Cc, Subject = Subject, Body = Body)