I am trying to use send_mail from Django Documentation:
send_mail('Subject here', 'Here is the message.', 'from@gmail.com',
['to@gmail.com'], fail_silently=False)
I am using the real e-mail address. However I get this error:
send_mail() takes exactly 1 non-keyword argument (4 given)
What am I doing wrong? Thanks