Django发送电子邮件

Django发送电子邮件,第1张

Django发送电子邮件

你是否要使用Gmail帐户?也许然后试试这个:

EMAIL_HOST = 'smtp.gmail.com'EMAIL_HOST_USER = 'your-username@gmail.com'EMAIL_HOST_PASSWORD = 'your-password'EMAIL_PORT = 587EMAIL_USE_TLS = True

然后尝试通过以下方法测试(django <1.4)

python manage.py shell>>> from django.core.mail import send_mail>>> send_mail('test email', 'hello world', to=['test@email.com'])

如果使用django 1.4,请使用以下命令:

python manage.py shell>>> from django.core.mail import send_mail>>> send_mail('test email', 'hello world', 'your@email.com', ['test@email.com'])

如果你没有使用gmail帐户,但仍然遇到问题,请尝试将EMAIL_HOST_USER和添加EMAIL_HOST_PASSWORD到你拥有的内容中。如果仍然有问题,则可能是你的网络阻止了你。 *** 作系统或路由器上的防火墙



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5059559.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存