我一直在尝试将django的smtp电子邮件集成到我的项目中,但是我似乎无法使其正常工作。我将Fail_Silently设置为False,并且在发送电子邮件时不会返回任何错误,这意味着它可以正常工作,但电子邮件无法通过电子邮件发送。
SETTINGS.py:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_USE_TLS = True
EMAIL_PORT = 587
EMAIL_HOST_USER = 'xxxxxxxxxx@gmail.com'
EMAIL_HOST_PASSWORD = 'xxxxxxxxxx'
`
views.py:
from django.core.mail import send_mail
from django.conf import settings
datatuple = (
('hello there', 'Message.', 'xxxxxxx@gmail.com',
['xxxxxxxx@yahoo.com']),
('hello there', 'Message.', 'xxxxxxx@gmail.com',
['xxxxxxxx@gmail.com']),
)
send_mass_mail(datatuple)
正如我所说,它不会失败,也不会发送电子邮件