send html mail with attachment in django
SourceURL:file:///home/wadmin/My Files/sedn html email with attachment.docx send html page rendered mail with attachment. views.py from django.shortcuts import render from django.http import HttpResponse from django.core.mail import send_mail from django.core.mail import send_mail, EmailMessage from django.template.loader import render_to_string from django.contrib.staticfiles import finders def mailView(request): try: subject = 'This is a test mail' message = render_to_string('mailfile.html') from_email = 'arnab.gupta@weavers-web.com' to_email = ['iamshimantadas123@yopmail.com'] email = EmailMessage(subject, message, from_email, to_email) ...