0

我正在尝试使用 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)

我究竟做错了什么?谢谢

4

1 回答 1

1

根据 Django 的文档,您的函数调用具有正确的参数。send_mail(subject, message, from_email, recipient_list, fail_silently=False, auth_user=None, auth_password=None, connection=None)
您确定您的文件中没有其他函数send_mail吗?

于 2013-01-31T11:52:48.880 回答