如何在不使用SMTP服务器的情况下午餐? [英] How to lunch webpage without using SMTP server?

查看:69
本文介绍了如何在不使用SMTP服务器的情况下午餐?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

伙计们,

有没有其他方法可以使用python或mod_python编写网页?

我的意思是,不要使用form.py/email" ;,没有SMTP服务器。

< form action =" form.py/email"方法= QUOT; POST"> ...


非常感谢。


南希W

Hi, Guys,
Is there any other way to use python or mod_python writing a web page?
I mean, not use "form.py/email", no SMTP server.
<form action="form.py/email" method="POST"> ...

Thanks a lot.

Nancy W

推荐答案

2004-07-21,Nancy< wx ***** @ hotmail.com>写道:
On 2004-07-21, Nancy <wx*****@hotmail.com> wrote:
有没有其他方法可以使用python或mod_python编写网页?
我的意思是,不要使用form.py/email" ;,没有SMTP服务器。
< form action =" form.py/email"方法= QUOT; POST"> ...
Is there any other way to use python or mod_python writing a web page?
I mean, not use "form.py/email", no SMTP server.
<form action="form.py/email" method="POST"> ...




我担心你的问题毫无意义。


SMTP是一种邮件传输协议。它与

网页无关。或者吃午饭。 ;)

http:/ /www.catb.org/~esr/faqs/smart-questions.html

-

Grant Edwards grante哇!妻子怎么样?

她在家享受

visi.com资本主义?



I''m afraid your question make no sense.

SMTP is a mail-transfer protocol. It''s got nothing to do with
webpages. Or with lunch. ;)

http://www.catb.org/~esr/faqs/smart-questions.html

--
Grant Edwards grante Yow! How''s the wife? Is
at she at home enjoying
visi.com capitalism?


Grant Edwards写道:
Grant Edwards wrote:
2004-07-21,Nancy< wx ***** @ hotmail.com>写道:

On 2004-07-21, Nancy <wx*****@hotmail.com> wrote:

有没有其他方法可以使用python或mod_python编写网页?
我的意思是,不要使用form.py/email" ,没有SMTP服务器。
< form action =" form.py/email"方法= QUOT; POST"> ...
Is there any other way to use python or mod_python writing a web page?
I mean, not use "form.py/email", no SMTP server.
<form action="form.py/email" method="POST"> ...



我担心你的问题毫无意义。

SMTP是一种邮件传输协议。它与
网页无关。或者吃午饭。 ;)

http:/ /www.catb.org/~esr/faqs/smart-questions.html



我想她正试图说:是否有发送电子邮件的地方来自网页

页面没有SMTP服务器。我相信某个地方需要一个SMTP服务器(

sometype)。也就是说,也许你可以使用
http:// www。 hare.demon.co.uk/pysmtp.html

John


I think she''s trying to say: Is there away to send an email from a web
page without having a SMTP server. I believe a SMTP server (of
sometype) is required somewhere. That said maybe you can use
http://www.hare.demon.co.uk/pysmtp.html
John


2004-07-21,John fabiani< jf******@yolo.com>写道:
On 2004-07-21, John fabiani <jf******@yolo.com> wrote:
2004-07-21,Nancy< wx ***** @ hotmail.com>写道:
On 2004-07-21, Nancy <wx*****@hotmail.com> wrote:
有没有其他方法可以使用python或mod_python编写网页?
我的意思是,不要使用form.py/email" ;,没有SMTP服务器。
< form action =" form.py/email"方法= QUOT; POST"> ...
我担心你的问题毫无意义。

SMTP是一种邮件传输协议。它与
网页无关。或者吃午饭。 ;)

http:/ /www.catb.org/~esr/faqs/smart-questions.html
Is there any other way to use python or mod_python writing a web page?
I mean, not use "form.py/email", no SMTP server.
<form action="form.py/email" method="POST"> ...
I''m afraid your question make no sense.

SMTP is a mail-transfer protocol. It''s got nothing to do with
webpages. Or with lunch. ;)

http://www.catb.org/~esr/faqs/smart-questions.html



我想她想说:是否有发送电子邮件的地方
来自没有SMTP服务器的网页。



I think she''s trying to say: Is there away to send an email
from a web page without having a SMTP server.




恐怕我不太清楚发送一个是什么意思电子邮件
来自网页的

http://www.hare.demon.co.uk/pysmtp.html

嗯,我看不出你怎么用它来发送一封电子邮件。

我相信在某个地方需要一个SMTP服务器(某种类型)。
那说也许你可以使用



I''m afraid I don''t quite know what it means to "send an e-mail
from a web page."
http://www.hare.demon.co.uk/pysmtp.html
Hmm, I don''t see how you could use that to send an e-mail.
I believe a SMTP server (of sometype) is required somewhere.
That said maybe you can use




如果她想要做的是从Python发送电子邮件

程序(作为CGI程序或ASP处理程序运行,或者Zope

)或者其他可能吗?),然后她需要的是一个SMTP

客户端模块,如
http://docs.python.org/lib/module-smtplib.html


要使用这样的SMTP客户端,是的,你必须有一个SMTP

服务器,您可以向其发送电子邮件。任何方式都没有真正的b / b
。 SMTP是如何在

互联网上传输电子邮件,以及发送您需要连接到SMTP

服务器的邮件。


您不能使用SMTP服务器发送邮件。 SMTP中电子邮件传输的方向是客户端 - >服务器。 [除非

是SMTP扩展,允许双向邮件传输?

我从来没有见过一个正在使用的...]

>
-

格兰特爱德华兹格兰特哇!我的叔叔穆雷

征服埃及53

visi.com B.C.我也可以证明它也是b $ b!



If what she''s trying to do is send an e-mail from a Python
program (running as a CGI program or ASP handler, or Zope
something-or-other perhaps?), then what she needs is an SMTP
client module like the one implimented by
http://docs.python.org/lib/module-smtplib.html.

To use such an SMTP client, yes, you have to have an SMTP
server to which you can send the e-mail. There''s not really
any way around that. SMTP is how e-mail is transferred on the
Internet, and to send an mail you need to connect to an SMTP
server.

You can''t send mail with an SMTP server. The direction of
e-mail transfer in SMTP is client --> server. [Unless there
are SMTP extensions that allow bi-directional mail transfers?
I''ve never seen one in use...]

--
Grant Edwards grante Yow! My uncle Murray
at conquered Egypt in 53
visi.com B.C. And I can prove
it too!!


这篇关于如何在不使用SMTP服务器的情况下午餐?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆