i've got django-registration setup and working with my application. I'm on django 1.1 and using the latest django-registration, 0.8 alpha.
in case it is relevant, i'm using the fcgi method to deploy and the django-registration app is deployed in a separate folder. I simply add the containing folder to python path. i.e. in settings.py of my app i do

import sys
sys.path.append('/path/to/django-registration-parent-folder')

in my settings file i have also set

DEFAULT_FROM_USER = 'email@address.that.should.be used'

When django registration sends out the activation email, however, it continues to be from

webmaster@localhost

the only way i was able to change this was by changing the actual code inside of django-registration. i.e. in models.py line 254:

# self.user.email_user(subject, message, settings.DEFAULT_FROM_EMAIL)
self.user.email_user(subject, message, 'email@address.that.should.be used')

Can anybody enlighten me as to why DEFAULT_FROM_EMAIL in the settings file of my app is not being used when sending activation emails?

thanks in advance

link|improve this question

61% accept rate
feedback

2 Answers

up vote 2 down vote accepted

A typo, you set DEFAULT_FROM_USER in your settings, but it should be DEFAULT_FROM_EMAIL.

link|improve this answer
wow... that is eff-in embarrassing....thanks! – w-- May 24 '11 at 7:46
feedback

The snippet from settings.py is DEFAULT_FROM_USER instead of DEFAULT_FROM_EMAIL

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.