2

我正在尝试发送将呈现内联图像的 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  alt="Blog Image"  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=.........." alt="Image">

但这也没有奏效。我几乎阅读了每篇关于使用 Django 渲染内联图像、堆栈溢出问题和答案的文章和博客,但它们都没有对我有用,尽管我的编码方式相同。请有人在这里指出我正确的方向!

4

2 回答 2

0

我找到了我的问题的答案......!问题并不在我所期望的代码中,而是在图像中,我试图在我的电子邮件中发送一个“SVG”图像,许多电子邮件客户端甚至 Gmail 都不支持,所以这就是问题所在。该代码适用于其他格式。您可以在此处获取有关支持的电子邮件格式的更多信息:

如何将 SVG 嵌入电子邮件中的 HTML 中,以便在大多数/所有电子邮件浏览器中可见?

于 2020-01-28T19:17:06.817 回答
0

首先你应该在 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" />

于 2020-01-28T16:17:19.640 回答