Recipient list has to be a list
object not a Queryset or any other array like object i believe. So add the following modification to your get_mail
variable:
mail_qs = User.objects.filter(is_admin=True).values_list('email', flat=True)
get_mail = list(mail_qs)
Should work if the queryset isn’t empty.
CLICK HERE to find out more related problems solutions.