I am using django's simple mail send function.
from django.core.mail import send_mail
send_mail(
'Subject here',
'Here is the message.',
'from@example.com',
['to@example.com'],
fail_silently=False,
)
How can I use this to put the sent emails in the mailbox sent folder?