0

以下を使用して、smtp を使用して電子メールを送信していますが、電子メールに件名がありません。件名を追加するにはどうすればよいですか?

from email.mime.text import MIMEText
from smtplib import SMTP

def email (body,subject):
    msg = MIMEText("%s" % body)
    msg['Content-Type'] = "text/html; charset=UTF8"
    s = SMTP('localhost',25)
    s.sendmail('userid@company.com', ['userid@company.com'],msg=msg.as_string())

def main ():
    # open gerrit.txt and read the content into body
    with open('gerrit.txt', 'r') as f:
        body = f.read()
    subject = "test email"
    email(body)
    print "Done"

if __name__ == '__main__':
    main()
4

1 に答える 1

0

いつものように、件名は別のヘッダーです。

msg['Subject'] = subject
于 2013-08-29T01:48:32.560 に答える