我遇到一个奇怪的问题,即我的电子邮件的最后10-20个字符被截断了。
发送电子邮件的代码如下:
#Get the runtime arguments.
subject = args[0]
content = str(args[1]).replace("\\n","<br/>") #Python automatically escapes the backslash in runtime arguments, so "\n" turns into "\\n".
#Create the email message.
msg = MIMEText(content, 'html')
msg['From']=sender
msg['To']=",".join(recipients)
msg['Subject']=subject
print "Sending email with subject \""+subject+"\" to: " + ",".join(recipients)
print "Content: \n" + content;
print "\n\n"
print "msg.as_string(): \n" + msg.as_string()
#Set the SMPTP server, and send the email.
s = smtplib.SMTP(server)
s.sendmail(sender,recipients,msg.as_string())
s.quit()
正如您在代码中看到的,我将内容和最终消息都打印到屏幕上,两者都正确打印。但是当收件人收到电子邮件时,它会被截断。如果被一定数量的字符截断,或者在一定数量的字符之后,我不是100%确定,但我怀疑它是后者。
奇怪的是,如果电子邮件是以纯文本而不是HTML格式发送的,那么它们就会发送得很好。但不幸的是,大多数收件人都使用Outlook,后者认为它比我更清楚在明文电子邮件中放置新行... ...
任何见解都将受到赞赏。
编辑:我还应该提到这不是格式良好的HTML。基本上,我只是用
替换新行<br/>
我不确定这是否会有所作为。除了制动标签之外,没有任何东西甚至可以远程类似于HTML标签,因此问题不在于意外的标签会弄乱格式化。
答案 0 :(得分:2)
如果要删除电子邮件中的所有换行符,则会遇到麻烦。 SMTP服务器通常不接受超过大约1,000个字符的行。如果你想发送自由格式的数据,请将它封装在Quoted-Printable(你可以放入“隐形”换行符)中,这些换行符将由客户端删除 - 注意对消息本身进行正确的QP编码。 )。
In quoted printable (RFC 2045), you can hex-encode any =22special=22 chara=
cter, like this (or=20in=20fact,=20any=20character=20at=all), and add line=
breaks where you see fit by prefixing them with an equals sign. Of cours=
e, you also have to encode any literal equals sign, like this: =3D. Bette=
r use a library which understands the details of this format than write yo=
ur own encoder, though.
如果指定Content-Transfer-Encoding: binary
,理论上可以传递任意长度的行,但坚持7bit
允许的更好更安全,并使用Content-Transfer-Encoding
之类的quoted-printable
1}}或(如果你想真的疯狂)base64
。
答案 1 :(得分:0)
详细说明tripleee的回答,这就是你在实践中如何做到这一点:
import quopri
#Create the email message.
content = quopri.encodestring(content)
msg = MIMEText(content, 'html')
msg.replace_header('content-transfer-encoding', 'quoted-printable')
...