我正在发现 Django,但我不明白为什么我的索引视图中的 send_mail() 函数一次可以正常工作,但当我重新加载索引页面时却不行。
看法:
class IndexView(generic.ListView):
model = Quote
template_name = 'quotes/index.html'
context_object_name = 'quotes_list'
send_mail('Test Dj', 'Here is the message.', 'from@example.com',
['to@example'], fail_silently=False)
def get_queryset(self):
return Quote.objects.all()
第一次加载页面时,一切正常,我收到了一封邮件。
然后我重新加载页面,我没有收到第二封邮件。