Django: Send HTML email via send_mass_mail ()

As you can see from the email docs, HTML is assumed for send_mail()

, but not send_mass_mail()

. Am I getting it right, and if so, to get the functionality send_mass_mail()

from HTML without writing a custom loop?

https://docs.djangoproject.com/en/1.7/topics/email/

+3


source to share


1 answer


You should check this answer when a guy creates a custom function send_mass_mail()

that accepts HTML code working withEmailMultiAlternatives



+1


source







All Articles