Python论坛  - 讨论区

标题:[python-chinese] 关于发送邮件的问题

2006年12月13日 星期三 14:35

Allentro allentro在gmail.com
星期三 十二月 13 14:35:24 HKT 2006

如下的代码,使用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()

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月13日 星期三 14:49

麦田守望者 qcxhome在gmail.com
星期三 十二月 13 14:49:29 HKT 2006

会是这样。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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月17日 星期日 19:36

Allentro allentro在gmail.com
星期日 十二月 17 19:36:43 HKT 2006

那是否有发送复杂邮件格式消息的方法呢?

-----邮件原件-----
发件人: 麦田守望者 [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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月18日 星期一 09:35

麦田守望者 qcxhome在gmail.com
星期一 十二月 18 09:35:32 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号