From f6e8cca49c47b1d48a2adae9effc2deaf9afa183 Mon Sep 17 00:00:00 2001 From: Sofia Papagiannaki Date: Mon, 27 Aug 2012 10:47:51 +0300 Subject: [PATCH] change helpdesk notification email subject --- snf-astakos-app/astakos/im/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snf-astakos-app/astakos/im/functions.py b/snf-astakos-app/astakos/im/functions.py index 363372b..6c1c57a 100644 --- a/snf-astakos-app/astakos/im/functions.py +++ b/snf-astakos-app/astakos/im/functions.py @@ -143,7 +143,7 @@ def send_helpdesk_notification(user, template_name='im/helpdesk_notification.txt 'support': DEFAULT_ADMIN_EMAIL}) sender = DEFAULT_FROM_EMAIL try: - send_mail('%s alpha2 testing account notification' % SITENAME, message, sender, [DEFAULT_CONTACT_EMAIL]) + send_mail('%s alpha2 testing account activated' % SITENAME, message, sender, [DEFAULT_CONTACT_EMAIL]) except (SMTPException, socket.error) as e: logger.exception(e) raise SendNotificationError() -- 1.7.10.4