我正在尝试使用 Django 文档中的 send_mail:
send_mail('Subject here', 'Here is the message.', 'from@gmail.com',
['to@gmail.com'], fail_silently=False)
我使用的是真实的电子邮件地址。但是我收到此错误:
send_mail() takes exactly 1 non-keyword argument (4 given)
我究竟做错了什么?谢谢
我正在尝试使用 Django 文档中的 send_mail:
send_mail('Subject here', 'Here is the message.', 'from@gmail.com',
['to@gmail.com'], fail_silently=False)
我使用的是真实的电子邮件地址。但是我收到此错误:
send_mail() takes exactly 1 non-keyword argument (4 given)
我究竟做错了什么?谢谢