From 51e7d40824c31c634ea32d76a911360e3a7ee7cf Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Fri, 29 Aug 2014 12:32:46 -0700 Subject: [PATCH] HTTP_ORIGIN wasn't working on Firefox, changed it to get_host() instead --- planetstack/core/models/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planetstack/core/models/user.py b/planetstack/core/models/user.py index eec0927..6b5b061 100644 --- a/planetstack/core/models/user.py +++ b/planetstack/core/models/user.py @@ -182,7 +182,7 @@ class User(AbstractBaseUser): self.set_password(password) subject, from_email, to = 'OpenCloud Account Credentials', 'support@opencloud.us', str(self.email) text_content = 'This is an important message.' - userUrl=get_request().META['HTTP_ORIGIN'] + userUrl="http://%s/" % get_request().get_host() html_content = """

Your account has been created on OpenCloud. Please log in here to activate your account

Username: """+self.email+"""
Temporary Password: """+password+"""
Please change your password once you successully login into the site.

""" msg = EmailMultiAlternatives(subject,text_content, from_email, [to]) msg.attach_alternative(html_content, "text/html") -- 2.43.0