通过python发送Html文件
我有一个 test.html 文件,我想通过电子邮件发送(我指的是页面内容)。有没有办法从 html 中获取信息并将其作为电子邮件发送?如果您有任何其他想法请分享。
I have a test.html file that I want to send via email(I am refering about the page content). Is there a way for getting the information from the html and sending it as a email? If you have any other ideas please share.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我刚刚编写的一个快速而肮脏的脚本,可能正是您正在寻找的。
https://gist.github.com/1790847
Here's a quick and dirty script I just wrote which might be what you're looking for.
https://gist.github.com/1790847
python 中读取文件的方式有很多种,python 发送电子邮件的方式也有很多。为什么不查找文档并返回一些编码错误呢?
在Python中发送电子邮件:http://docs.python.org/library/email -examples.html
用python读取文件:http://docs.python.org/tutorial/inputoutput.html
There are many ways of reading files in python and there are also ways to send emails in python. Why don't you look up the documentation and come back with some coding error ?
Sending emails in python: http://docs.python.org/library/email-examples.html
Reading files in python: http://docs.python.org/tutorial/inputoutput.html