在电子邮件django中附加与html内联的图像的问题

时间:2013-03-12 22:04:14

标签: django django-templates

我试图发送一个模板的邮件。在我的模型中,我使用缩略图字段来存储发送时的图像。邮件实际上是通过两个发送的: - 将副本作为“消息”发送给系统内的用户。我希望能够将副本发送到用户的电子邮件中。到目前为止的问题是没有发送图像。

我怀疑我的问题的模板可能是: - 顺便说一下{% load thumbnail %}

{% if my_list %}
<div class="email">
{% for x in my_list %}
    <div style="float:left;width:230px;">
    <img src="{% thumbnail x.image 220x220 %}" alt="x.description" /><br />
    {{ x.description }}
{% endfor %}

当我print x.image收到images/img_13_20_11_3.jpg图片存储在media/images/下时我也发现奇怪的是它甚至不会在它发送的html中呈现outfit.description。在我的观看中,我已经outfit这样my_list = Mymodel.objects.filter(pk__in=selected_objects)处理了所选对象selected_objects =request.POST.getlist('selected_objects')

我希望我已经足够好地解释了自己。

0 个答案:

没有答案