我正在使用模板通过 Django 发送电子邮件。电子邮件已发送,但图像未显示。
在模板 html 文件中,我有:
STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")]
STATIC_URL = env('STATIC_URL', cast=str, default='/static/')
STATIC_ROOT = env(
'STATIC_ROOT', cast=str, default=os.path.join(BASE_DIR, "collected_static")
)
在 settings.py 文件中,我有以下内容:
{{1}}
我的图片保存在静态文件夹中名为图片的文件夹中。
答案 0 :(得分:1)
您必须使用 MultiPart 和 cid:。发送带有图像的 html 邮件几乎总是一个坏主意。它将垃圾邮件指向您的邮件和 smtp 服务器
试试这个
from email.mime.image import MIMEImage
from django.core.mail import EmailMultiAlternatives
subject = 'Django sending email'
body_html = '''
<html>
<body>
<img src="cid:logo.png" />
<img src="https://www.google.com/logos/doodles/2015/googles-new-logo-5078286822539264.3-hp2x.gif" />
</body>
</html>
'''
from_email = 'hello@localhost.com'
to_email = 'hi@localhost.com'
msg = EmailMultiAlternatives(
subject,
body_html,
from_email=from_email,
to=[to_email]
)
msg.mixed_subtype = 'related'
msg.attach_alternative(body_html, "text/html")
img_dir = 'static'
image = 'logo.png
file_path = os.path.join(img_dir, image)
with open(file_path, 'r') as f:
img = MIMEImage(f.read())
img.add_header('Content-ID', '<{name}>'.format(name=image))
img.add_header('Content-Disposition', 'inline', filename=image)
msg.attach(img)