0

According to the documentation on django-mailer, to use django-mailer for all my emails, I just need to put this in settings.py:

EMAIL_BACKEND = "mailer.backend.DbBackend"

Which I did.

But I get this error when I actually try to use django-templated-email to send my emails:

ImproperlyConfigured: Error importing email backend module mailer.backend: "No module named backend"

How can I fix this?

EDIT:

Looks like there is indeed no "backend" module inside the mailer package. Does this mean the documentation is incorrect? What should I do now; find another package to use?

nothing

Maxime Lorant
  • 34,607
  • 19
  • 87
  • 97
wrongusername
  • 18,564
  • 40
  • 130
  • 214
  • @AlexanderAfanasiev Reinstalling did not help, but I installed directly from the GitHub repository, and that finally fixed it. I'd accept your answer if you put it as one. – wrongusername Apr 24 '13 at 08:02

1 Answers1

1

Actually, there is backend.py file in the mailer package, see github repo. Try to reinstall django-mailer directly from github.

alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195