11

我正在尝试配置 Django 的 send_email,以便可以向用户发送密码重置电子邮件。到目前为止,我还没有让它发挥作用。我已经设置了一个基本的 Gmail 帐户(没有 Google App 等),在我的 Django settings.py 中我有:

EMAIL_HOST      = 'smtp.gmail.com'
EMAIL_HOST_PASSWORD = 'my_password'
EMAIL_HOST_USER = 'my_account@gmail.com'
EMAIL_PORT      = 587
MAIL_USE_TLS   = True

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
DEFAULT_FROM_EMAIL  = 'admin@my-site.com'

然后我尝试通过执行以下操作来测试:

python manage.py shell
>>> from django.core.mail import send_mail
>>> send_mail('test', 'test', 'test@test.com', ['my-personal-email@gmail.com'])

我收到错误消息

Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "C:\Program Files\Python27\lib\site-packages\django\core\mail\__init__.py
", line 62, in send_mail
    connection=connection).send()
  File "C:\Program Files\Python27\lib\site-packages\django\core\mail\message.py"
, line 255, in send
    return self.get_connection(fail_silently).send_messages([self])
  File "C:\Program Files\Python27\lib\site-packages\django\core\mail\backends\sm
tp.py", line 88, in send_messages
    new_conn_created = self.open()
  File "C:\Program Files\Python27\lib\site-packages\django\core\mail\backends\sm
tp.py", line 55, in open
    self.connection.login(self.username, self.password)
  File "C:\Program Files\Python27\lib\smtplib.py", line 577, in login
    raise SMTPException("SMTP AUTH extension not supported by server.")
SMTPException: SMTP AUTH extension not supported by server.

有谁知道发生了什么!任何提示表示赞赏!

4

7 回答 7

31

您在设置中打错了字。TLS 应该设置为EMAIL_USE_TLSnot MAIL_USE_TLS。连接到 587 时不使用 TLS 会生成此错误。

于 2014-01-01T23:01:02.007 回答
6

确保您还设置了EMAIL_BACKEND设置:

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
于 2013-11-02T21:04:20.290 回答
6

我发现了问题...您必须使用此代码

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

代替

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
于 2020-08-29T13:03:19.387 回答
5

这个问题的回答迟到了;但希望能帮助这个线程的未来读者。

正如@WAF 所指出的,EMAIL_USE_TLS = True 解决了这个错误。

此外,如果通过 django 管理工具的 shell 命令验证分辨率,我们必须在添加上述设置后重新启动 shell 并重复验证步骤。

下面总结了来自 django shell 的 gmail 验证的最小配置:

在 settings.py 中:

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '<email.id>'
EMAIL_HOST_PASSWORD = '<pw>'
EMAIL_USE_TLS = True

在 django 管理工具的 shell 中:

from django.core.mail import send_mail
send_mail('From django', 'Test email from dj manage', 'from@example.com', ['to@example.com'])
... 1
于 2018-04-06T08:29:06.913 回答
1

通过删除邮件扩展程序修复错误后,您可能会收到其他错误。在大多数情况下,扩展并不是真正的问题。一旦你正确地完成了你的设置,它可以在有扩展名和没有扩展名的情况下工作。

EMAIL_HOST_USER = 'my_account'

访问https://myaccount.google.com/security并检查当您打开底部的允许不太安全的应用程序设置时它是否有效。

于 2015-11-18T12:57:03.287 回答
0

这是您的 SMTP 服务器配置的问题。它没有配置 TLS。如果您使用的是 postfix,请参考文档 -
http://postfix.state-of-mind.de/patrick.koetter/smtpauth/postfix_tls_support.html

它对您也有帮助 -
如何使用 Python 以 Gmail 作为提供商发送电子邮件?

于 2013-11-02T23:14:57.887 回答
0

您需要设置TLS或设置SSLTrue

另外,使用STARTTLS端口587

像那样:

EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_USE_SSL = False

注意:您不需要在设置中包含此内容:

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
于 2019-12-19T17:37:26.170 回答