你是否要使用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到你拥有的内容中。如果仍然有问题,则可能是你的网络阻止了你。 *** 作系统或路由器上的防火墙。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)