Это способ отправки нескольких электронных писем в django.
from django.core.mail import send_mail
send_mail(
'Subject here',
'Here is the message.',
'from@example.com',
['to@example.com', 'anotherTo@example.com'],
fail_silently=False,
)
Вот документация по django. https://docs.djangoproject.com/en/2.2/topics/email/
Надеюсь, это поможет. Также новичок в Джанго:)