On Wed, Jan 28, 2009 at 1:18 PM, madhav <madhav....@gmail.com> wrote:

>
> Thankyou Tracey,
> You are right about settings.EMAIL_HOST_USER not getting overriden
> from django.core.email. Even I checked it.
> But the current behaviour is a bit confusing. Because, I can have a
> default email id
> for the entire application(like sys...@mysite.com or do-not-
> re...@mysite.com) which will
> handle all the normal email communications. And as well I want users
> of my site
> to send notifications to one-another or a similar case where I want to
> send
> a mail from some other email id other than EMAIL_HOST_USER. This case
> is so common.
> And i really doubt why django wont support that. I think it might be a
> case related to
> some overriding and not a limitation in django. What do you say?


>From http://docs.djangoproject.com/en/dev/topics/email/

"Although Python makes sending e-mail relatively easy via the smtplib
library, Django provides a couple of light wrappers over it, to make sending
e-mail extra quick."

If the Django-provided routines don't meet your needs, you may need to use
the smtplib library directly.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to