使用 Django 在 HTML 电子邮件模板中将图像作为内联附件发送
Posted
技术标签:
【中文标题】使用 Django 在 HTML 电子邮件模板中将图像作为内联附件发送【英文标题】:Sending Images as inline Attachment within HTML Email template using Django 【发布时间】:2020-05-05 20:08:00 【问题描述】:我正在尝试发送将呈现内联图像的 html 电子邮件。我在views.py中的代码如下:
import ...
def signup_mail_function(form): # here, form is just my context
subject = "Signup Successful"
html_message = render_to_string('emailTemplate.html', 'form': form)
plain_message = strip_tags(html_message)
from_email = 'uconnect786@gmail.com'
to_email = [form.email]
# Sending email here
msg = EmailMultiAlternatives(subject=subject, body=plain_message, from_email=from_email,to=to_email)
msg.attach_alternative(html_message, "text/html")
msg.content_subtype = 'html'
msg.mixed_subtype = 'related'
img_path = settings.STATIC_DIR + '/images/blogsImage.svg' # path of my image
image_name = Path(img_path).name # Testing image name,which returns out to be same as image name i.e blogsImage.svg
print(img_path, image_name) # testing image paths here
with open(img_path, 'rb') as f:
image = MIMEImage(f.read(), _subtype="svg+xml")
msg.attach(image)
image.add_header('Content-ID', "<>".format(image_name)) # Setting content ID
print("<>".format(image_name)) # Testing content ID
msg.send()
所以上面是我的电子邮件处理代码。在模板中,我正在执行以下操作:
<img src="cid:blogsImage.svg" />
以图片作为附件的电子邮件已成功发送,但实际上我希望将图片作为 Html 页面中的内嵌图片。
我收到的电子邮件,您看到 Html 模板中没有显示任何图像,因此弹出这些图像的“alt”标签
我可以对整个 Html 页面进行快照,但在其下方,我将该图像作为附件。
试过了:
我还尝试使用如下的直接 URL 在我的 Html 模板中测试图像插入:
<img src="https://www.google.com/url?sa=i&rct=j&q=&esrc=s&source=.........." >
但这也没有成功。我几乎阅读了每篇关于使用 Django 渲染内联图像、堆栈溢出问题和答案的文章和博客,但它们都没有对我有用,尽管我的编码方式相同。 请有人在这里指出我正确的方向!
【问题讨论】:
【参考方案1】:首先你应该在 view.py 中导入以下代码
从 email.mime.image 导入 MIMEImage 导入操作系统
def signup_mail_function(form):
msg = EmailMultiAlternatives(subject=subject, body=plain_message,
from_email=from_email,to=to_email)
msg.content_subtype = 'html'
msg.mixed_subtype = 'related'
img_path = os.path.join(settings.BASE_DIR, '/images/blogsImage.svg')
with open(banner_path, 'rb') as banner_image:
banner_image = MIMEImage(img_path.read())
banner_image.add_header('Content-ID', '<blogsImage.svg>')
msg.attach(banner_image)
msg.send()
在 html 模板中
<img alt="Blog Image" src="cid:blogsImage.svg" />
【讨论】:
你能解释一下吗...这里的'banner_path'是什么? 这会将其作为附件发送,而不是作为嵌入图像发送。【参考方案2】:我找到了我的问题的答案...! 问题并不在我所期望的代码中,而是在图像中,我试图在我的电子邮件中发送一个“SVG”图像,许多电子邮件客户端甚至 Gmail 都不支持,所以这就是问题所在。该代码适用于其他格式。 您可以在此处了解有关支持的电子邮件格式的更多信息:
How can I embed SVG into HTML in an email, so that it's visible in most/all email browsers?
【讨论】:
以上是关于使用 Django 在 HTML 电子邮件模板中将图像作为内联附件发送的主要内容,如果未能解决你的问题,请参考以下文章
django中将views.py中的python方法传递给html模板文件
在 Django 模板中将卡片组划分为行的最佳方法 - Django