I am sending HTML E-mail from Django like this:
template_html = \"email/deposit_email.html\"
email_context = Context({ \'contact\': contact, \'am
I am writing this for other people who might run into the same problem like me in the future. Apparently as Mr. Leonardo as pointed out, HTML e-mails doesn't read the external or even internal css at all because the head part of the template are opted out and only body part are used. Thus the solution is to use table and html attributes with inline css to style the html email template.
Thanks