Answer the question
In order to leave comments, you need to log in
Django 3 when sending a letter to mail, the images in the letter are not displayed, how to fix it?
subject = name_cinema
html_message = render_to_string('app_template/mail_template.html', context)
plain_message = strip_tags(html_message)
from_email = 'From <[email protected]>'
to = email
mail.send_mail(subject, plain_message, from_email, [to], html_message=html_message)
<img src="{% static 'img/1234.png' %}" alt="1">
<img src="{% static 'img/1.png' %}" alt="2">
<img src="../../1234.png" alt="3">
4<img src="https://www.meme-arsenal.com/memes/579eb482a8540ee55b0bf3db8695a783.jpg" alt="4">
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question