电子邮件模板中的Django渲染图像

时间:2019-06-11 10:32:21

标签: django

我已经创建了如下所示的电子邮件模板

{%load staticfiles%}

<h1 style="color:red; background-image:url('../images/contact.jfif')">Welcome {{contact_name}}!</h1><br>
Your username is {{ contact_email }} and your content is {{ form_content }}.
<img src="{{ request.get_host }}{% static 'images/logo.png' %}" alt="ddddd" />
- xyz

</div>

但是图像未在电子邮件中显示并显示错误not getting displayed in email

任何人都可以通过提供解决方案来帮助我

1 个答案:

答案 0 :(得分:1)

您要提供相对于您自己网站的图片网址。 但是,然后您尝试使用该相对网址在Google上获取它。

它肯定会显示错误,因为在其服务器上找不到图像。

  

尝试提供图片的绝对网址。

我认为那应该可以了。