Django - 生成HTML电子邮件的纯文本版本

时间:2017-08-03 02:44:13

标签: python django django-email

我希望通过提供纯文本和html版本的电子邮件来提高可传递率:

text_content = ???
html_content = ???

msg = EmailMultiAlternatives(subject, text_content, 'from@site.com', ['to@site.com'])
msg.attach_alternative(html_content, "text/html")
msg.send()

如何在不复制电子邮件模板的情况下执行此操作?

2 个答案:

答案 0 :(得分:2)

这是一个解决方案:

import re
from django.utils.html import strip_tags

def textify(html):
    # Remove html tags and continuous whitespaces 
    text_only = re.sub('[ \t]+', ' ', strip_tags(html))
    # Strip single spaces in the beginning of each line
    return text_only.replace('\n ', '\n').strip()

html = render_to_string('email/confirmation.html', {
    'foo': 'hello',
    'bar': 'world',
})
text = textify(html)

我们的想法是使用strip_tags删除html标记并删除所有额外的空格,同时保留换行符。

结果如下:

<div style="width:600px; padding:20px;">
    <p>Hello,</p>
    <br>
    <p>Lorem ipsum</p>
    <p>Hello world</p> <br>
    <p> 
        Best regards, <br>
        John Appleseed
    </p>
</div>

--->

Hello,

Lorem ipsum
Hello world

Best regards,
John Appleseed

答案 1 :(得分:0)

将html转换为文本的另一种方法是使用html2text (必须安装):

import html2text

def textify(html):
    h = html2text.HTML2Text()

    # Don't Ignore links, they are useful inside emails
    h.ignore_links = False
    return h.handle(html)


html = render_to_string('email/confirmation.html', {
    'foo': 'hello',
    'bar': 'world',
})
text = textify(html)