2006年12月13日 星期三 14:35
如下的代码,使用test在test.com邮箱发送一封邮件到test2在test2.com邮箱,但 test2在test2.com收到邮件后却发现邮件头比一般发送的邮件(如用OutLook等软件发送 的邮件)的邮件头要少很多内容,以至于在OutLook或Firefox接收后在软件介面中看不 见发件人、接收时间等信息,不知大家有没有遇到这样的问题?如何解决? # -*- coding: iso-8859-15 -*- import smtplib server = smtplib.SMTP("mailserver.test.com") server.login("test在test.com", "password") server.sendmail("test在test.com", "test2在test2.com", "Subject:hello\n\nthis is a test!") server.close()
2006年12月13日 星期三 14:49
会是这样。sendmail发送最简单的邮件格式发送消息。 On 12/13/06, Allentro <allentro at gmail.com> wrote: > 如下的代码,使用test at test.com邮箱发送一封邮件到test2 at test2.com邮箱,但 > test2 at test2.com收到邮件后却发现邮件头比一般发送的邮件(如用OutLook等软件发送 > 的邮件)的邮件头要少很多内容,以至于在OutLook或Firefox接收后在软件介面中看不 > 见发件人、接收时间等信息,不知大家有没有遇到这样的问题?如何解决? > > > > # -*- coding: iso-8859-15 -*- > > import smtplib > server = smtplib.SMTP("mailserver.test.com") > server.login("test at test.com", "password") server.sendmail("test at test.com", > "test2 at test2.com", "Subject:hello\n\nthis is a test!") > server.close() > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -- GoogleTalk: qcxhome at gmail.com MSN: qcxhome at hotmail.com My Space: tkdchen.spaces.live.com BOINC: boinc.berkeley.edu 中国分布式计算总站: www.equn.com
2006年12月17日 星期日 19:36
那是否有发送复杂邮件格式消息的方法呢? -----邮件原件----- 发件人: 麦田守望者 [mailto:qcxhome在gmail.com] 发送时间: 2006年12月13日 14:49 收件人: python-chinese在lists.python.cn 主题: Re: [python-chinese] 关于发送邮件的问题 会是这样。sendmail发送最简单的邮件格式发送消息。 On 12/13/06, Allentro <allentro在gmail.com> wrote: > 如下的代码,使用test在test.com邮箱发送一封邮件到test2在test2.com邮箱,但 > test2在test2.com收到邮件后却发现邮件头比一般发送的邮件(如用OutLook等软件发 送 > 的邮件)的邮件头要少很多内容,以至于在OutLook或Firefox接收后在软件介面中看 不 > 见发件人、接收时间等信息,不知大家有没有遇到这样的问题?如何解决? > > > > # -*- coding: iso-8859-15 -*- > > import smtplib > server = smtplib.SMTP("mailserver.test.com") > server.login("test在test.com", "password") server.sendmail("test在test.com", > "test2在test2.com", "Subject:hello\n\nthis is a test!") > server.close() > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -- GoogleTalk: qcxhome在gmail.com MSN: qcxhome在hotmail.com My Space: tkdchen.spaces.live.com BOINC: boinc.berkeley.edu 中国分布式计算总站: www.equn.com
2006年12月18日 星期一 09:35
On 12/17/06, Allentro <allentro at gmail.com> wrote: > 那是否有发送复杂邮件格式消息的方法呢? > > -----邮件原件----- > 发件人: 麦田守望者 [mailto:qcxhome at gmail.com] > 发送时间: 2006年12月13日 14:49 > 收件人: python-chinese at lists.python.cn > 主题: Re: [python-chinese] 关于发送邮件的问题 > > 会是这样。sendmail发送最简单的邮件格式发送消息。 > > On 12/13/06, Allentro <allentro at gmail.com> wrote: > > 如下的代码,使用test at test.com邮箱发送一封邮件到test2 at test2.com邮箱,但 > > test2 at test2.com收到邮件后却发现邮件头比一般发送的邮件(如用OutLook等软件发 > 送 > > 的邮件)的邮件头要少很多内容,以至于在OutLook或Firefox接收后在软件介面中看 > 不 > > 见发件人、接收时间等信息,不知大家有没有遇到这样的问题?如何解决? > > > > > > > > # -*- coding: iso-8859-15 -*- > > > > import smtplib > > server = smtplib.SMTP("mailserver.test.com") > > server.login("test at test.com", "password") server.sendmail("test at test.com", > > "test2 at test2.com", "Subject:hello\n\nthis is a test!") > > server.close() > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > -- > GoogleTalk: qcxhome at gmail.com > MSN: qcxhome at hotmail.com > My Space: tkdchen.spaces.live.com > BOINC: boinc.berkeley.edu > 中国分布式计算总站: www.equn.com > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese 使用email module -- GoogleTalk: qcxhome at gmail.com MSN: qcxhome at hotmail.com My Space: tkdchen.spaces.live.com BOINC: boinc.berkeley.edu 中国分布式计算总站: www.equn.com
Zeuux © 2025
京ICP备05028076号