From 95684c90f87b0bad6c435ca398f9d50c4b9373e9 Mon Sep 17 00:00:00 2001 From: Yasin Date: Tue, 21 Jan 2014 11:02:01 +0100 Subject: [PATCH] REG: email is not cced to user. only to PIs --- portal/registrationview.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/portal/registrationview.py b/portal/registrationview.py index e068aecf..26f9e67d 100644 --- a/portal/registrationview.py +++ b/portal/registrationview.py @@ -169,12 +169,13 @@ class RegistrationView (FreeAccessView): 'email' : reg_email, 'user_hrn' : user_hrn, 'public_key' : public_key, - 'cc_myself' : True # form.cleaned_data['cc_myself'] } recipients = authority_get_pi_emails(request,reg_auth) - - if ctx['cc_myself']: - recipients.append(ctx['email']) + + # We don't need to send this email to user. + # it's for the PI only + #if ctx['cc_myself']: + # recipients.append(ctx['email']) msg = render_to_string('user_request_email.txt', ctx) send_mail("Onelab New User request for %s submitted"%reg_email, msg, 'support@myslice.info', recipients) -- 2.43.0