我正在尝试发送将呈现内联图像的 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 渲染内联图像、堆栈溢出问题和答案的文章和博客,但它们都没有对我有用,尽管我的编码方式相同。请有人在这里指出我正确的方向!