通过 Python 发送电子邮件的最简单方法
可能的重复:
在 python 中接收和发送电子邮件
我一直在研究用 python 发送邮件并找到了一些不同的选项(设置我自己的邮件服务器,使用 gmail 的 smtp 等),但想知道是否有一些简单的方法可以做到这一点。我正在 ubuntu 机器上的 apache2 上通过 wsgi 运行 python 脚本。感谢您的任何提示!
Possible Duplicate:
Receive and send emails in python
I've been looking into sending mail with python and found a few different options (setting up my own mailserver, using gmail's smtp, etc) but was wondering if there was some simple way to do it. I am running the python script via wsgi on apache2 on an ubuntu box. Thanks for any tips!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处有一个很好的示例。正如您似乎知道的,您只需要一个 smtp 服务器来进行实际的发送。该特定步骤不依赖于 python。
如果 g-mails smtp 服务器让你发送邮件,我会走那条路。当我上次设置这个(用于 svn 备份脚本)时,我幸运地使用了我公司的 smtp 服务器。
There's a great example here. As you seem to know, you'll just need an smtp server to do the actual sending. That particular step is not dependent on python.
If g-mails smtp server let's you send mail, I'd go that route. When I last set this up (for an svn backup script), I luckily got to use my company's smtp server.