使用send_mail()[Python - Django]发送的邮件不会发送嵌入的图像

时间:2015-09-20 23:08:58

标签: python html django email

好的以下是我的电子邮件模板:

<html>

<head>
{% load staticfiles %}

</head>

<body>

<h2>Welcome!</h2>
<img src = "{% static 'app/images/logo1.png' %}" style = "position: absolute; left: 5%; height: 100%; width:50%;" />


<div style = "position: absolute; top: 100%; left: 0%; height: 10%; width: 100%: color: #006699;"></div>

<img src = "{% static 'app/images/content.png' %}" style = "position: absolute; left:0%; top: 110%; height: 100%; width: 60%">
</img>
</body>

</html>

以下是我的电子邮件功能:

        html_template = render_to_string('email_template.html', {})

        try:
            send_mail(
                'Title',
                'Plaintext Version Goes Here',
                'sender',
                [email],
                html_message=html_template,
            )
        except:
            return HttpResponse("No!")

当我发送邮件时只欢迎!在邮件中打印。图像没有显示出来。知道为什么吗?

提前致谢!

1 个答案:

答案 0 :(得分:2)

我解决了这个指定完整的STATIC_URL,例如http://localhost:8000/static/ 部署后,我改为域名。 尝试将其更改为

<img src = "http://localhost:8000/static/app/images/logo1.png" style = "position: absolute; left: 5%; height: 100%; width:50%;" />

我找到了这个possible other solution,但我没试过。