在mutt中使用python创建多部分/替代邮件

时间:2013-02-02 01:00:14

标签: python mime mutt

我想使用Markdown格式创建text/plain消息,并将其转换为multipart/alternative消息,其中已从Markdown生成text/html部分。 我已经尝试使用filter命令通过创建消息的python程序对其进行过滤,但似乎消息没有通过正确发送。代码如下(这只是测试代码,看我是否可以发出multipart/alternative条消息。

import sys
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart

html = """<html>
          <body>
          This is <i>HTML</i>
          </body>
          </html>
"""

msgbody = sys.stdin.read()

newmsg = MIMEMultipart("alternative")

plain = MIMEText(msgbody, "plain")
plain["Content-Disposition"] = "inline"

html = MIMEText(html, "html")
html["Content-Disposition"] = "inline"

newmsg.attach(plain)
newmsg.attach(html)

print newmsg.as_string()

不幸的是,在mutt中,只有在编写时才会将消息体发送到filter命令(不包括头文件)。一旦我开始工作,我认为降价部分不会太难。

2 个答案:

答案 0 :(得分:1)

更新:有人撰写了一篇关于配置mutt以使用python脚本的文章。我自己从未做过。 hashcash and mutt,文章介绍了muttrc的配置并给出了代码示例。


旧答案

它能解决你的问题吗?

#!/usr/bin/env python

from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart


# create the message
msg = MIMEMultipart('alternative')
msg['Subject'] = "My subject"
msg['From'] = "foo@example.org"
msg['To'] = "bar@example.net"

# Text of the message
html = """<html>
          <body>
          This is <i>HTML</i>
          </body>
          </html>
"""
text="This is HTML"

# Create the two parts
plain = MIMEText(text, 'plain')
html = MIMEText(html, 'html')

# Let's add them
msg.attach(plain)
msg.attach(html)

print msg.as_string()

我们保存并测试该程序。

python test-email.py 

给出了:

Content-Type: multipart/alternative;
 boundary="===============1440898741276032793=="
MIME-Version: 1.0
Subject: My subject
From: foo@example.org
To: bar@example.net

--===============1440898741276032793==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit

This is HTML
--===============1440898741276032793==
Content-Type: text/html; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit

<html>
          <body>
          This is <i>HTML</i>
          </body>
          </html>

--===============1440898741276032793==--

答案 1 :(得分:0)

类似Mutt 1.13的功能可以从外部脚本创建multipart/alternativehttp://www.mutt.org/relnotes/1.13/