我通过python脚本从linux机器上的命令行发送一封简单的电子邮件。我已经查找了关于为什么CSS可能会在电子邮件客户端中被更改,剥离等的答案。但是,我似乎无法解决看起来像一个简单的问题。
当我发送带有表格的简单HTML电子邮件时,随机的td会删除它们的样式。当我在浏览器中呈现相同的HTML时,它看起来很好。
这是python代码:
#!/usr/bin/python
import os
import subprocess
def make_html_report(data, subject):
text = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
text += '<html lang="en"><head>'
text += '<meta charset="utf-8"/>'
text += '<title>{0}</title>'.format(subject)
text += '</head>'
text += '<body>'
text += '<table style="border:solid 1px #000000; border-collapse: collapse; width: 300px;">'
for row, line in enumerate(data):
tr_style = ""
if row == 0:
tr_style += "border-bottom:solid 1px #000000;"
text += '<tr style="{0}">'.format(tr_style)
for index, item in enumerate(line):
td_style = "border-right:solid 1px #000000;"
if row != 0:
if index == 1:
td_style += "text-align:right; padding-right:5px;"
if float(line[3]) < 0:
td_style += "color:#ff0000;"
if index != 1 or row == 0:
td_style += "text-align:center;"
text += '<td style="{0}">{1}</td>'.format(td_style, item)
text += '</tr>'
text += '</table>'
text += '<p style="margin-top: 20px;">Random example email. Why is it not working??</p>'
text += '</body>'
text += '</html>'
print text
return text
def send_report(html_content, subject):
SENDMAIL = "/usr/sbin/sendmail" # sendmail location
p = os.popen("%s -t" % SENDMAIL, "w")
text = "From: {0}\nTo: {1}\nSubject: {2}\nContent-Type: text/html\nMIME-Version: 1.0\n\n{3}".format(
"me@example.com",
"me@example.com",
subject,
html_content
)
print "\n{0}".format(text)
p.write(text)
sts = p.close()
if __name__ == "__main__":
subject = "example subject"
data = [["head1","head2","head3","head4"], [1,2,3,4], [4,3,2,1], [8,7,6,4], [6,5,4,-5], [5,4,3,-2], [8,7,6,4], [6,5,4,-5], [5,4,3,-2]]
send_report(make_html_report(data, subject), subject)
我使用了html检查程序。一切都很好。但每当我发送电子邮件时,部分或全部这些事情都会发生:
(1)td一起失去了他们的风格元素
(2)随机空间被插入到样式元素中,因此它不会呈现。示例:<td style="text-align: c enter:>
。在单词中心插入一个空格。
有没有人知道这里发生了什么?
答案 0 :(得分:1)
根据RFC 2822 2.1.1 http://www.faqs.org/rfcs/rfc2822.html,电子邮件的每一行应该包含少于78个字符。
尝试插入一些新行(\ n),这样就不会有超过78个字符的行。 我认为这个功能可以做到(对不起,如果没有,我是PHP开发人员): http://perldoc.perl.org/Text/Wrap.html