通过电子邮件发送时损坏的 HTML
Posted
技术标签:
【中文标题】通过电子邮件发送时损坏的 HTML【英文标题】:Corrupted HTML when sent by email 【发布时间】:2015-02-28 04:24:00 【问题描述】:当我使用 python 的 mime 实用程序发送 html 电子邮件时。我收到损坏的 HTML 电子邮件,如下所述。当我发送 UTF-8 HTML 电子邮件时,问题似乎消失了。
请注意,我只发送 ascii 字符,根本不发送 UTF-8 字符。
我使用了Sending HTML email using Python的这个模板:
#! /usr/bin/python
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
# me == my email address
# you == recipient's email address
me = "my@email.com"
you = "your@email.com"
# Create message container - the correct MIME type is multipart/alternative.
msg = MIMEMultipart('alternative')
msg['Subject'] = "Link"
msg['From'] = me
msg['To'] = you
# Create the body of the message (a plain-text and an HTML version).
text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.python.org"
html = """\
<html>
<head></head>
<body>
<p>
<table cellpadding="3">
<tbody>
<tr style="background-color:#d4d4d4">
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
</tbody>
</table>
</p>
</body>
</html>
"""
# Record the MIME types of both parts - text/plain and text/html.
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')
# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message, in this case
# the HTML message, is best and preferred.
msg.attach(part1)
msg.attach(part2)
# Send the message via local SMTP server.
s = smtplib.SMTP('localhost')
# sendmail function takes 3 arguments: sender's address, recipient's address
# and message to send - here it is sent as one string.
s.sendmail(me, you, msg.as_string())
s.quit()
我确实收到了一封电子邮件,但有时这行:
'<tr style="background-color:#d4d4d4">'
将被替换为:
<tr style="background-color:#d4d4d4">
导致生成的 html 错误。
知道如何解决这个问题吗?
【问题讨论】:
您找到解决方案了吗?我正在尝试解决同样的问题。您使用什么邮件客户端来接收电子邮件? 很遗憾我没有! 【参考方案1】:style="背景颜色:#d4d4d4"> 仔细检查您是否正确地转义了引号。 eg: 也许在这里使用单引号。
【讨论】:
如果是逃逸问题,那就是系统性的,不是随机的。以上是关于通过电子邮件发送时损坏的 HTML的主要内容,如果未能解决你的问题,请参考以下文章