I am looking to add a name to my default_from_email address in Django and wanted to know whether you do this through the settings.py file?

you have your different options.

DEFAULT_FROM_EMAIL
EMAIL_HOST
EMAIL_PASSWORD
...

but the email result still ends in from: noreply@mydomain.com and I would like to change this into My Domain instead.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 5 down vote accepted

set

DEFAULT_FROM_EMAIL = 'My Domain <noreply@mydomain.com>'
link|improve this answer
awesome thanks. – ApPeL Sep 20 '10 at 7:19
feedback

Your Answer

 
or
required, but never shown

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