HTMLコンテンツに画像が含まれていて表示されない場合、送信されたHTMLメールを含むメールを送信したいと思います。 さらに、ローカルピクチャのHTMLテンプレートを表示しようとすると正しく表示されます。 イメージをHTMLコンテンツに表示する方法は?djangoでメールを送信する画像を表示する
HTMLコンテンツ
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<style>
body{
background-color: gray;
color: red;
}
div, #globale{
background-color:#eee;
}
</style>
</head>
<body>
<!--<img src=" {% static "Kamal.png" %}" alt="image"/>-->
<!-<img src="{% static "Kamal.png" %}" alt="image"/>-->
<div id="globale">
<p>
Convert the filename, content, mimetype triple into a MIME attachment
object. Adjust headers to use Content-ID where applicable.
Taken from <img src="Kamal.png" alt=" Mon Image "/>
HTML is the method of choice for those wishing to send emails with rich
text, layout and graphics. Often it is desirable to embed the graphics
within the message so recipients can display the message directly,
without further downloads.
<img src="{% static "Kamal.png" %}" alt=" Mon Image "/>
Some mail agents don't support HTML or their users prefer to receive
plain text messages. Senders of HTML messages should include a plain
text message as an alternate for these users.
<img src="Kamal.png" />
This recipe sends a short HTML message with a single embedded image
and an alternate plain text message.
</p>
<h3>Message Reussi avec Image</h3>
</div>
</body>
</html>
あなたは 'STATIC_URL'変数には何がありますか? – inlanger
私のSTATIC_URL変数に私はこのSTATIC_URL = '/ static /'を持っています。 –