Django邮件进口

时间:2013-04-21 07:58:12

标签: django django-templates django-email

根据the documentation on django-mailer,要为我的所有电子邮件使用django-mailer,我只需要将它放在settings.py中:

EMAIL_BACKEND = "mailer.backend.DbBackend"

我做了什么。

但是当我真正尝试使用django-templated-email发送电子邮件时,我收到此错误:

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

我该如何解决这个问题?

修改

看起来邮件包里面确实没有“后端”模块。这是否意味着文档不正确?我现在应该怎么做;找另一个包用?

nothing

1 个答案:

答案 0 :(得分:1)

实际上,邮件包中有backend.py个文件,请参阅github repo。尝试直接从github重新安装django-mailer